svn commit: r184550 - head/sys/mips/idt

Warner Losh imp at FreeBSD.org
Sat Nov 1 19:58:24 PDT 2008


Author: imp
Date: Sun Nov  2 02:58:24 2008
New Revision: 184550
URL: http://svn.freebsd.org/changeset/base/184550

Log:
  Remove cardbus attachment.  It likely was a cut-n-paste left over from
  whatever template was used to create this driver.  It is not
  necessary, and wouldn't work anyway since (a) this device will never
  be in a cardbus tin-can and (b) the driver isn't even PCI, but instead
  a built-in NIC on the IDT RC32434 on its internal bus.

Modified:
  head/sys/mips/idt/if_kr.c

Modified: head/sys/mips/idt/if_kr.c
==============================================================================
--- head/sys/mips/idt/if_kr.c	Sun Nov  2 02:56:16 2008	(r184549)
+++ head/sys/mips/idt/if_kr.c	Sun Nov  2 02:58:24 2008	(r184550)
@@ -139,7 +139,6 @@ static driver_t kr_driver = {
 static devclass_t kr_devclass;
 
 DRIVER_MODULE(kr, obio, kr_driver, kr_devclass, 0, 0);
-DRIVER_MODULE(kr, cardbus, kr_driver, kr_devclass, 0, 0);
 DRIVER_MODULE(miibus, kr, miibus_driver, miibus_devclass, 0, 0);
 
 static int 


More information about the svn-src-all mailing list