diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/usb.h | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/include/usb.h b/include/usb.h index d9fedeeff..736730e89 100644 --- a/include/usb.h +++ b/include/usb.h @@ -197,6 +197,16 @@ int board_usb_init(int index, enum usb_init_type init);   */  int board_usb_cleanup(int index, enum usb_init_type init); +/* + * If CONFIG_USB_CABLE_CHECK is set then this function + * should be defined in board file. + * + * @return 1 if cable is connected and 0 otherwise. + */ +#ifdef CONFIG_USB_CABLE_CHECK +int usb_cable_connected(void); +#endif +  #ifdef CONFIG_USB_STORAGE  #define USB_MAX_STOR_DEV 5 |