|
@@ -192,7 +192,7 @@
|
192
|
192
|
*
|
193
|
193
|
*/
|
194
|
194
|
#define __table(table,idx) \
|
195
|
|
- __attribute__ (( unused, __table_section(table,idx) ))
|
|
195
|
+ __attribute__ (( __table_section(table,idx) ))
|
196
|
196
|
|
197
|
197
|
/**
|
198
|
198
|
* Linker table start marker.
|
|
@@ -208,7 +208,7 @@
|
208
|
208
|
*
|
209
|
209
|
*/
|
210
|
210
|
#define __table_start(table) \
|
211
|
|
- __attribute__ (( unused, __table_section_start(table) ))
|
|
211
|
+ __attribute__ (( __table_section_start(table) ))
|
212
|
212
|
|
213
|
213
|
/**
|
214
|
214
|
* Linker table end marker.
|
|
@@ -224,6 +224,6 @@
|
224
|
224
|
*
|
225
|
225
|
*/
|
226
|
226
|
#define __table_end(table) \
|
227
|
|
- __attribute__ (( unused, __table_section_end(table) ))
|
|
227
|
+ __attribute__ (( __table_section_end(table) ))
|
228
|
228
|
|
229
|
229
|
#endif /* _GPXE_TABLES_H */
|