diff options
author | Warner Losh <imp@FreeBSD.org> | 2022-07-27 14:46:12 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2022-07-27 15:04:12 +0000 |
commit | 079f02e8c035f12779a57f10b274253a701267e5 (patch) | |
tree | 38fda94ee13e33e76eaf4b44d50e1fa59c67eb52 | |
parent | 4932a6e41d1fc3fe474358501d5933e783066bdc (diff) |
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
-rw-r--r-- | stand/libsa/stand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/libsa/stand.h b/stand/libsa/stand.h index 6ddbc188e6f6..5f87f96ce673 100644 --- a/stand/libsa/stand.h +++ b/stand/libsa/stand.h @@ -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 |