usb_init_device(): move prototype to usb.h

Get rid of some usb-target.h files

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31487 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2011-12-31 18:43:41 +00:00
parent 12a45549f6
commit bce42fdc31
17 changed files with 8 additions and 142 deletions

View file

@ -79,3 +79,7 @@ int usb_detect(void)
{
return usb_status;
}
void usb_init_device(void)
{
}

View file

@ -21,8 +21,6 @@
#ifndef USB_TARGET_H
#define USB_TARGET_H
static inline void usb_init_device(void) { }
int usb_detect(void);
void usb_insert_int(void);
void usb_remove_int(void);