Skip to content
Snippets Groups Projects
Commit f40fdbae authored by Pekka Enberg's avatar Pekka Enberg
Browse files

devfs: Remove "device not found" printout


OpenJDK looks up "/dev/urandom" at startup but works just fine without
it.  There's no need to display an error message in OSv if that happens.

Signed-off-by: default avatarPekka Enberg <penberg@cloudius-systems.com>
parent 654dfc3e
No related branches found
No related tags found
No related merge requests found
......@@ -143,7 +143,6 @@ devfs_lookup(struct vnode *dvp, char *name, struct vnode **vpp)
for (;;) {
error = device_info(&info);
if (error) {
printf("device %s not found\n", name);
return ENOENT;
}
if (!strncmp(info.name, name, MAXDEVNAME))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment