stand: Small comment correction

While in theory, once upon a time, dv_type was arch specific, that's
never been the case in FreeBSD (and certaintly isn't in the surviving
drivers). Remove that notation.

Sponsored by:		Netflix
Reviewed by:		tsoome
Differential Revision:	https://reviews.freebsd.org/D35911
This commit is contained in:
Warner Losh 2022-07-27 08:46:12 -06:00
parent 4932a6e41d
commit 079f02e8c0

View File

@ -142,7 +142,7 @@ extern struct fs_ops efihttp_fsops;
#define DEV_NAMLEN 8 /* Length of name of device class */
struct devsw {
const char dv_name[DEV_NAMLEN];
int dv_type; /* opaque type constant, arch-dependant */
int dv_type; /* opaque type constant */
#define DEVT_NONE 0
#define DEVT_DISK 1
#define DEVT_NET 2