Skip to content

Commit

Permalink
[PATCH] mm/mmzone.c: EXPORT_UNUSED_SYMBOL
Browse files Browse the repository at this point in the history
This patch marks three unused exports as EXPORT_UNUSED_SYMBOL.

Signed-off-by: Adrian Bunk <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
AdrianBunk authored and Linus Torvalds committed Jul 10, 2006
1 parent 26fc523 commit b0d85c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mm/mmzone.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct pglist_data *first_online_pgdat(void)
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)
{
Expand All @@ -24,7 +24,7 @@ struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
return NULL;
return NODE_DATA(nid);
}
EXPORT_SYMBOL(next_online_pgdat);
EXPORT_UNUSED_SYMBOL(next_online_pgdat); /* June 2006 */


/*
Expand All @@ -45,5 +45,5 @@ struct zone *next_zone(struct zone *zone)
}
return zone;
}
EXPORT_SYMBOL(next_zone);
EXPORT_UNUSED_SYMBOL(next_zone); /* June 2006 */

0 comments on commit b0d85c5

Please sign in to comment.