Commit b0d85c5c authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] mm/mmzone.c: EXPORT_UNUSED_SYMBOL

This patch marks three unused exports as EXPORT_UNUSED_SYMBOL.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 26fc5236
...@@ -14,7 +14,7 @@ struct pglist_data *first_online_pgdat(void) ...@@ -14,7 +14,7 @@ struct pglist_data *first_online_pgdat(void)
return NODE_DATA(first_online_node); return NODE_DATA(first_online_node);
} }
EXPORT_SYMBOL(first_online_pgdat); EXPORT_UNUSED_SYMBOL(first_online_pgdat); /* June 2006 */
struct pglist_data *next_online_pgdat(struct pglist_data *pgdat) struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
{ {
...@@ -24,7 +24,7 @@ struct pglist_data *next_online_pgdat(struct pglist_data *pgdat) ...@@ -24,7 +24,7 @@ struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
return NULL; return NULL;
return NODE_DATA(nid); return NODE_DATA(nid);
} }
EXPORT_SYMBOL(next_online_pgdat); EXPORT_UNUSED_SYMBOL(next_online_pgdat); /* June 2006 */
/* /*
...@@ -45,5 +45,5 @@ struct zone *next_zone(struct zone *zone) ...@@ -45,5 +45,5 @@ struct zone *next_zone(struct zone *zone)
} }
return zone; return zone;
} }
EXPORT_SYMBOL(next_zone); EXPORT_UNUSED_SYMBOL(next_zone); /* June 2006 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment