bcm63xx_dev_usb_usbd.h 389 B

123456789101112131415161718
  1. #ifndef BCM63XX_DEV_USB_USBD_H_
  2. #define BCM63XX_DEV_USB_USBD_H_
  3. /*
  4. * usb device platform data
  5. */
  6. struct bcm63xx_usbd_platform_data {
  7. /* board can only support full speed (USB 1.1) */
  8. int use_fullspeed;
  9. /* 0-based port index, for chips with >1 USB PHY */
  10. int port_no;
  11. };
  12. int bcm63xx_usbd_register(const struct bcm63xx_usbd_platform_data *pd);
  13. #endif /* BCM63XX_DEV_USB_USBD_H_ */