Skip to content

Commit

Permalink
[PATCH] remove EXPORT_UNUSED_SYMBOL'ed symbols
Browse files Browse the repository at this point in the history
In time for 2.6.20, we can get rid of this junk.

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 Dec 7, 2006
1 parent a8f48a9 commit 045f147
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions kernel/printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ int console_printk[4] = {
DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
};

EXPORT_UNUSED_SYMBOL(console_printk); /* June 2006 */

/*
* Low lever drivers may need that to know if they can schedule in
* their unblank() callback or not. So let's export it.
Expand Down Expand Up @@ -772,7 +770,6 @@ int is_console_locked(void)
{
return console_locked;
}
EXPORT_UNUSED_SYMBOL(is_console_locked); /* June 2006 */

/**
* release_console_sem - unlock the console system
Expand Down
2 changes: 0 additions & 2 deletions mm/bootmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ unsigned long max_low_pfn;
unsigned long min_low_pfn;
unsigned long max_pfn;

EXPORT_UNUSED_SYMBOL(max_pfn); /* June 2006 */

static LIST_HEAD(bdata_list);
#ifdef CONFIG_CRASH_DUMP
/*
Expand Down
1 change: 0 additions & 1 deletion mm/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,6 @@ int vmtruncate_range(struct inode *inode, loff_t offset, loff_t end)

return 0;
}
EXPORT_UNUSED_SYMBOL(vmtruncate_range); /* June 2006 */

/**
* swapin_readahead - swap in pages in hope we need them soon
Expand Down
5 changes: 0 additions & 5 deletions mm/mmzone.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ struct pglist_data *first_online_pgdat(void)
return NODE_DATA(first_online_node);
}

EXPORT_UNUSED_SYMBOL(first_online_pgdat); /* June 2006 */

struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
{
int nid = next_online_node(pgdat->node_id);
Expand All @@ -24,8 +22,6 @@ struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
return NULL;
return NODE_DATA(nid);
}
EXPORT_UNUSED_SYMBOL(next_online_pgdat); /* June 2006 */


/*
* next_zone - helper magic for for_each_zone()
Expand All @@ -45,5 +41,4 @@ struct zone *next_zone(struct zone *zone)
}
return zone;
}
EXPORT_UNUSED_SYMBOL(next_zone); /* June 2006 */

0 comments on commit 045f147

Please sign in to comment.