Date: Mon, 9 Mar 2009 13:25:34 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r189576 - in head/sys: dev/puc dev/re legacy/dev/usb Message-ID: <200903091325.n29DPYXg027504@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Mon Mar 9 13:25:34 2009 New Revision: 189576 URL: http://svn.freebsd.org/changeset/base/189576 Log: remove now-redunant cardbus attachment lines. Modified: head/sys/dev/puc/puc_pci.c head/sys/dev/re/if_re.c head/sys/legacy/dev/usb/ehci_pci.c head/sys/legacy/dev/usb/ohci_pci.c head/sys/legacy/dev/usb/uhci_pci.c Modified: head/sys/dev/puc/puc_pci.c ============================================================================== --- head/sys/dev/puc/puc_pci.c Mon Mar 9 13:23:54 2009 (r189575) +++ head/sys/dev/puc/puc_pci.c Mon Mar 9 13:25:34 2009 (r189576) @@ -144,4 +144,3 @@ static driver_t puc_pci_driver = { }; DRIVER_MODULE(puc, pci, puc_pci_driver, puc_devclass, 0, 0); -DRIVER_MODULE(puc, cardbus, puc_pci_driver, puc_devclass, 0, 0); Modified: head/sys/dev/re/if_re.c ============================================================================== --- head/sys/dev/re/if_re.c Mon Mar 9 13:23:54 2009 (r189575) +++ head/sys/dev/re/if_re.c Mon Mar 9 13:25:34 2009 (r189576) @@ -308,7 +308,6 @@ static driver_t re_driver = { static devclass_t re_devclass; DRIVER_MODULE(re, pci, re_driver, re_devclass, 0, 0); -DRIVER_MODULE(re, cardbus, re_driver, re_devclass, 0, 0); DRIVER_MODULE(miibus, re, miibus_driver, miibus_devclass, 0, 0); #define EE_SET(x) \ Modified: head/sys/legacy/dev/usb/ehci_pci.c ============================================================================== --- head/sys/legacy/dev/usb/ehci_pci.c Mon Mar 9 13:23:54 2009 (r189575) +++ head/sys/legacy/dev/usb/ehci_pci.c Mon Mar 9 13:25:34 2009 (r189576) @@ -632,5 +632,4 @@ static driver_t ehci_driver = { static devclass_t ehci_devclass; DRIVER_MODULE(ehci, pci, ehci_driver, ehci_devclass, 0, 0); -DRIVER_MODULE(ehci, cardbus, ehci_driver, ehci_devclass, 0, 0); MODULE_DEPEND(ehci, usb, 1, 1, 1); Modified: head/sys/legacy/dev/usb/ohci_pci.c ============================================================================== --- head/sys/legacy/dev/usb/ohci_pci.c Mon Mar 9 13:23:54 2009 (r189575) +++ head/sys/legacy/dev/usb/ohci_pci.c Mon Mar 9 13:25:34 2009 (r189576) @@ -407,5 +407,4 @@ static driver_t ohci_driver = { static devclass_t ohci_devclass; DRIVER_MODULE(ohci, pci, ohci_driver, ohci_devclass, 0, 0); -DRIVER_MODULE(ohci, cardbus, ohci_driver, ohci_devclass, 0, 0); MODULE_DEPEND(ohci, usb, 1, 1, 1); Modified: head/sys/legacy/dev/usb/uhci_pci.c ============================================================================== --- head/sys/legacy/dev/usb/uhci_pci.c Mon Mar 9 13:23:54 2009 (r189575) +++ head/sys/legacy/dev/usb/uhci_pci.c Mon Mar 9 13:25:34 2009 (r189576) @@ -520,5 +520,4 @@ static driver_t uhci_driver = { static devclass_t uhci_devclass; DRIVER_MODULE(uhci, pci, uhci_driver, uhci_devclass, 0, 0); -DRIVER_MODULE(uhci, cardbus, uhci_driver, uhci_devclass, 0, 0); MODULE_DEPEND(uhci, usb, 1, 1, 1);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903091325.n29DPYXg027504>