linux/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_usb_usbd.h
Kevin Cernekee 22df90f6bb MIPS: BCM63XX: Create platform_device for USBD
Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
Reviewed-by: Jonas Gorski <jonas.gorski@gmail.com>
Patchwork: http://patchwork.linux-mips.org/patch/4111/
Signed-off-by: John Crispin <blogic@openwrt.org>
2012-08-30 20:15:52 +02:00

17 lines
389 B
C

#ifndef BCM63XX_DEV_USB_USBD_H_
#define BCM63XX_DEV_USB_USBD_H_
/*
* usb device platform data
*/
struct bcm63xx_usbd_platform_data {
/* board can only support full speed (USB 1.1) */
int use_fullspeed;
/* 0-based port index, for chips with >1 USB PHY */
int port_no;
};
int bcm63xx_usbd_register(const struct bcm63xx_usbd_platform_data *pd);
#endif /* BCM63XX_DEV_USB_USBD_H_ */