Remove debug print

This commit is contained in:
Thomas Veerman 2011-09-13 16:00:39 +00:00
parent 200b9d7339
commit 1c928cf61a

View File

@ -773,11 +773,8 @@ int status;
struct vnode *vp;
/* Figure out which device is replying */
if ((dp = get_dmap(driver_e)) == NULL) {
printf("VFS (%s:%d): endpoint %d is not a known driver endpoint\n",
__FILE__, __LINE__, driver_e);
return;
}
if ((dp = get_dmap(driver_e)) == NULL) return;
major = dp-dmap;
dev = makedev(major, minor);