Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef BCM63XX_DEV_USB_USBD_H_
0003 #define BCM63XX_DEV_USB_USBD_H_
0004 
0005 /*
0006  * usb device platform data
0007  */
0008 struct bcm63xx_usbd_platform_data {
0009     /* board can only support full speed (USB 1.1) */
0010     int use_fullspeed;
0011 
0012     /* 0-based port index, for chips with >1 USB PHY */
0013     int port_no;
0014 };
0015 
0016 int bcm63xx_usbd_register(const struct bcm63xx_usbd_platform_data *pd);
0017 
0018 #endif /* BCM63XX_DEV_USB_USBD_H_ */