diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2011-12-31 18:44:12 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2011-12-31 18:44:12 +0000 |
| commit | 2de47e2bae0d526f3d7c2889c242c80bf026d145 (patch) | |
| tree | 5fae92d208abd5c111a2bee324464a6c56205f21 | |
| parent | 280d5844a1828176320ccdf6506f0789d162cb07 (diff) | |
| download | rockbox-2de47e2bae0d526f3d7c2889c242c80bf026d145.zip rockbox-2de47e2bae0d526f3d7c2889c242c80bf026d145.tar.gz rockbox-2de47e2bae0d526f3d7c2889c242c80bf026d145.tar.bz2 rockbox-2de47e2bae0d526f3d7c2889c242c80bf026d145.tar.xz | |
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
| -rw-r--r-- | firmware/target/arm/as3525/system-target.h | 4 | ||||
| -rw-r--r-- | firmware/target/arm/as3525/usb-target.h | 27 | ||||
| -rw-r--r-- | firmware/target/arm/imx233/system-target.h | 3 | ||||
| -rw-r--r-- | firmware/target/arm/imx233/usb-target.h | 3 | ||||
| -rw-r--r-- | firmware/target/arm/system-target.h | 2 | ||||
| -rw-r--r-- | firmware/target/arm/usb-target.h | 3 |
6 files changed, 9 insertions, 33 deletions
diff --git a/firmware/target/arm/as3525/system-target.h b/firmware/target/arm/as3525/system-target.h index cdcc2e6..db5bb89 100644 --- a/firmware/target/arm/as3525/system-target.h +++ b/firmware/target/arm/as3525/system-target.h @@ -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 */ diff --git a/firmware/target/arm/as3525/usb-target.h b/firmware/target/arm/as3525/usb-target.h index 673fb17..e69de29 100644 --- a/firmware/target/arm/as3525/usb-target.h +++ b/firmware/target/arm/as3525/usb-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 */ diff --git a/firmware/target/arm/imx233/system-target.h b/firmware/target/arm/imx233/system-target.h index 90a2966..a01c05f 100644 --- a/firmware/target/arm/imx233/system-target.h +++ b/firmware/target/arm/imx233/system-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 */ diff --git a/firmware/target/arm/imx233/usb-target.h b/firmware/target/arm/imx233/usb-target.h index 600fc99..89ccaee 100644 --- a/firmware/target/arm/imx233/usb-target.h +++ b/firmware/target/arm/imx233/usb-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 */ diff --git a/firmware/target/arm/system-target.h b/firmware/target/arm/system-target.h index 022baa1..e7f9ce0 100644 --- a/firmware/target/arm/system-target.h +++ b/firmware/target/arm/system-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) { diff --git a/firmware/target/arm/usb-target.h b/firmware/target/arm/usb-target.h index 34e7a54..e0145ec 100644 --- a/firmware/target/arm/usb-target.h +++ b/firmware/target/arm/usb-target.h @@ -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 |