summaryrefslogtreecommitdiffstats
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2012-10-24 14:05:39 +0200
committerMarcin Bukat <marcin.bukat@gmail.com>2012-10-24 14:05:39 +0200
commit5dec7af1ecf5c0d483d13c8ad9cc0a13868a7c16 (patch)
tree5fddaa57054271fb123e993f782ec6cebb63c33c /apps/plugin.h
parentc975de1534f4b4092ad75f85353eec32a9a31b92 (diff)
downloadrockbox-5dec7af1ecf5c0d483d13c8ad9cc0a13868a7c16.tar.gz
rockbox-5dec7af1ecf5c0d483d13c8ad9cc0a13868a7c16.zip
Revert "SH gcc 4.6.3 with link-time optimization, for Archos targets"
This was commited by accident, sorry.
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index ad726d61bf..bb2778164b 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -974,9 +974,9 @@ struct plugin_header {
extern unsigned char plugin_start_addr[];
extern unsigned char plugin_end_addr[];
#define PLUGIN_HEADER \
- const struct plugin_api *rb DATA_ATTR USED_ATTR; \
+ const struct plugin_api *rb DATA_ATTR; \
const struct plugin_header __header \
- __attribute__ ((section (".header"))) USED_ATTR = { \
+ __attribute__ ((section (".header")))= { \
{ PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, \
plugin_start_addr, plugin_end_addr }, plugin__start, &rb };
#else /* PLATFORM_HOSTED */