diff options
author | paul <paul@FreeBSD.org> | 2000-12-29 11:59:41 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 2000-12-29 11:59:41 +0000 |
commit | 57ea0a2a3dfe1ac6fb3a73b9576d7fdd97fa2837 (patch) | |
tree | 702351e70f4d754fd5e399c3d73248ac535a196f /sys/dev/lnc/if_lnc.c | |
parent | 0915b9d6ecf413d0d081e63802bccbf7fc953317 (diff) | |
download | FreeBSD-src-57ea0a2a3dfe1ac6fb3a73b9576d7fdd97fa2837.zip FreeBSD-src-57ea0a2a3dfe1ac6fb3a73b9576d7fdd97fa2837.tar.gz |
The pci and isa drivers were meant to share the same devclass but
the devclass definitions were all wrong so they had their own private
ones with the same name.
Fix it so they all use the same global devclass.
Diffstat (limited to 'sys/dev/lnc/if_lnc.c')
-rw-r--r-- | sys/dev/lnc/if_lnc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c index 1444556..05c3476 100644 --- a/sys/dev/lnc/if_lnc.c +++ b/sys/dev/lnc/if_lnc.c @@ -90,6 +90,8 @@ #include <dev/lnc/if_lncvar.h> #include <dev/lnc/if_lncreg.h> +devclass_t lnc_devclass; + static char const * const nic_ident[] = { "Unknown", "BICC", |