diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-08-12 13:38:25 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-08-12 13:38:25 +0000 |
commit | 0e2286f226c8ce66adb846995eb1bf0b4d92a649 (patch) | |
tree | ae47cfb8e2440b0b220e57e4c894390b6c1efd7a /firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c | |
parent | 70ebe46d74dbb10160a878cdb120c9b3e7a8e30c (diff) | |
download | rockbox-0e2286f226c8ce66adb846995eb1bf0b4d92a649.tar.gz rockbox-0e2286f226c8ce66adb846995eb1bf0b4d92a649.zip |
Introduce NORETURN_ATTR wrapper for __attribute__((noreturn)), using this and a bit further cleanup in main gets rid of a warning when compiling for android.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27788 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c')
-rw-r--r-- | firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c b/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c index f458561731..e1894ce0ac 100644 --- a/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c +++ b/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c @@ -21,6 +21,7 @@ #include "kernel.h" #include "system.h" +#include "gcc_extensions.h" #include "panic.h" #include "avic-imx31.h" #include "gpio-imx31.h" @@ -219,9 +220,9 @@ void system_prepare_fw_start(void) #ifndef BOOTLOADER void rolo_restart_firmware(const unsigned char *source, unsigned char *dest, - int length) __attribute__((noreturn)); + int length) NORETURN_ATTR; -void __attribute__((noreturn)) +void NORETURN_ATTR rolo_restart(const unsigned char *source, unsigned char *dest, int length) { /* Some housekeeping tasks must be performed for a safe changeover */ |