diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2005-12-30 04:11:41 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2005-12-30 04:11:41 +0000 |
commit | 3310cf50b6dcad8b4dc666e179e13fd2d7b1f0f3 (patch) | |
tree | e5dd360ba9226968f7c50bf2f98db993c113710c /sys/dev | |
parent | 7b4835b12976c14ce41ba934e6dafb0aa087b4f5 (diff) |
remove the tailq used to locate ehci's companion controllers. i have
absolutely no idea how this compiled since the usb_cardbus struct (which is
what the list was made of) was defined in usb_cardbus.h. usb_cardbus.h was
removed from the tree over 8 months ago. gcc must be crap.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/cardbus/ehci_cardbus.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/cardbus/ehci_cardbus.c b/sys/dev/cardbus/ehci_cardbus.c index 06ee5ab31d5..0b53289ef16 100644 --- a/sys/dev/cardbus/ehci_cardbus.c +++ b/sys/dev/cardbus/ehci_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci_cardbus.c,v 1.4 2005/12/30 03:56:28 dlg Exp $ */ +/* $OpenBSD: ehci_cardbus.c,v 1.5 2005/12/30 04:11:40 dlg Exp $ */ /* $NetBSD: ehci_cardbus.c,v 1.6.6.3 2004/09/21 13:27:25 skrll Exp $ */ /* @@ -87,9 +87,6 @@ struct cfattach ehci_cardbus_ca = { #define cardbus_findvendor pci_findvendor #define cardbus_devinfo pci_devinfo -static TAILQ_HEAD(, usb_cardbus) ehci_cardbus_alldevs = - TAILQ_HEAD_INITIALIZER(ehci_cardbus_alldevs); - int ehci_cardbus_match(struct device *parent, void *match, void *aux) { |