From 750ac6d869c3b4bd94ecdb6dce9c16265326b954 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 12 Aug 2004 13:17:11 +0000 Subject: Check for usb_get_busses() and usb_interrupt_read() --- extra/bcm203x.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'extra') diff --git a/extra/bcm203x.c b/extra/bcm203x.c index f4c48364..1aa9257b 100644 --- a/extra/bcm203x.c +++ b/extra/bcm203x.c @@ -40,6 +40,20 @@ #include +#ifdef NEED_USB_GET_BUSSES +static inline struct usb_bus *usb_get_busses(void) +{ + return usb_busses; +} +#endif + +#ifdef NEED_USB_INTERRUPT_READ +static inline int usb_interrupt_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) +{ + return usb_bulk_read(dev, ep, bytes, size, timeout); +} +#endif + static char *fw_path = "/lib/firmware"; static int load_file(struct usb_dev_handle *udev, char *filename) -- cgit