blob: 58e00f62de43b93f6323f6373f23c363fb2382e4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __USB_CONTROLLER_H__
#define __USB_CONTROLLER_H__
struct usb_controller {
int (*notify_attached_source)(struct usb_controller *uc, int value);
};
extern int usb_controller_register(struct device* parent, struct usb_controller *uc);
#endif
|