summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/tables.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gpxe/tables.h')
-rw-r--r--src/include/gpxe/tables.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gpxe/tables.h b/src/include/gpxe/tables.h
index 1fdbbfd7..385bb525 100644
--- a/src/include/gpxe/tables.h
+++ b/src/include/gpxe/tables.h
@@ -192,7 +192,7 @@
*
*/
#define __table(table,idx) \
- __attribute__ (( unused, __table_section(table,idx) ))
+ __attribute__ (( __table_section(table,idx) ))
/**
* Linker table start marker.
@@ -208,7 +208,7 @@
*
*/
#define __table_start(table) \
- __attribute__ (( unused, __table_section_start(table) ))
+ __attribute__ (( __table_section_start(table) ))
/**
* Linker table end marker.
@@ -224,6 +224,6 @@
*
*/
#define __table_end(table) \
- __attribute__ (( unused, __table_section_end(table) ))
+ __attribute__ (( __table_section_end(table) ))
#endif /* _GPXE_TABLES_H */