Remove totally gratuitous check on the unit number in dev2bios().

This commit is contained in:
mycroft 1999-10-28 05:20:05 +00:00
parent 7227a97ad0
commit 093997a6f6
1 changed files with 1 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: devopen.c,v 1.8 1999/04/14 11:45:39 drochner Exp $ */
/* $NetBSD: devopen.c,v 1.9 1999/10/28 05:20:05 mycroft Exp $ */
/*
* Copyright (c) 1996, 1997
@ -89,9 +89,6 @@ dev2bios(devname, unit, biosdev)
if (i == NUMBIOSDEVS)
return (ENXIO);
if (unit >= 4) /* ??? */
return (EUNIT);
return (0);
}