forked from len0rd/rockbox
as3525: don't export empty usb_init_device(), declare it as empty inline
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26326 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9ecb4e9384
commit
b0146de64c
2 changed files with 2 additions and 5 deletions
|
|
@ -43,10 +43,6 @@ void usb_enable(bool on)
|
|||
#endif
|
||||
}
|
||||
|
||||
void usb_init_device(void)
|
||||
{
|
||||
}
|
||||
|
||||
void usb_insert_int(void)
|
||||
{
|
||||
usb_status = USB_INSERTED;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
#ifndef USB_TARGET_H
|
||||
#define USB_TARGET_H
|
||||
|
||||
void usb_init_device(void);
|
||||
static inline void usb_init_device(void) { }
|
||||
|
||||
int usb_detect(void);
|
||||
void usb_insert_int(void);
|
||||
void usb_remove_int(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue