forked from len0rd/rockbox
firewire/usb_remove/insert_int: move to system-target.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31491 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
280d5844a1
commit
2de47e2bae
6 changed files with 9 additions and 33 deletions
|
@ -64,4 +64,8 @@ static inline void mdelay(unsigned msecs)
|
|||
{
|
||||
udelay(1000 * msecs);
|
||||
}
|
||||
|
||||
void usb_insert_int(void);
|
||||
void usb_remove_int(void);
|
||||
|
||||
#endif /* SYSTEM_TARGET_H */
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
/***************************************************************************
|
||||
* __________ __ ___.
|
||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2006 by Barry Wardelll
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
* KIND, either express or implied.
|
||||
*
|
||||
****************************************************************************/
|
||||
#ifndef USB_TARGET_H
|
||||
#define USB_TARGET_H
|
||||
|
||||
void usb_insert_int(void);
|
||||
void usb_remove_int(void);
|
||||
|
||||
#endif /* USB_TARGET_H */
|
|
@ -114,4 +114,7 @@ static inline void mdelay(unsigned msecs)
|
|||
udelay(1000 * msecs);
|
||||
}
|
||||
|
||||
void usb_insert_int(void);
|
||||
void usb_remove_int(void);
|
||||
|
||||
#endif /* SYSTEM_TARGET_H */
|
||||
|
|
|
@ -27,7 +27,4 @@
|
|||
#define USB_DRIVER_CLOSE
|
||||
#endif
|
||||
|
||||
void usb_insert_int(void);
|
||||
void usb_remove_int(void);
|
||||
|
||||
#endif /* USB_TARGET_H */
|
||||
|
|
|
@ -52,6 +52,8 @@
|
|||
|
||||
void usb_pin_init(void);
|
||||
bool usb_plugged(void);
|
||||
void firewire_insert_int(void);
|
||||
void usb_insert_int(void);
|
||||
|
||||
static inline void udelay(unsigned usecs)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,6 @@
|
|||
#ifndef USB_TARGET_H
|
||||
#define USB_TARGET_H
|
||||
|
||||
void usb_insert_int(void);
|
||||
void firewire_insert_int(void);
|
||||
|
||||
#ifdef HAVE_BOOTLOADER_USB_MODE
|
||||
#define USB_DRIVER_CLOSE
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue