Skip to content

Commit

Permalink
metag: move mm/init.c exports out of metag_ksyms.c
Browse files Browse the repository at this point in the history
It's less error prone to have function symbols exported immediately
after the function rather than in metag_ksyms.c. Move each EXPORT_SYMBOL
in metag_ksyms.c for symbols defined in mm/init.c into mm/init.c.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
  • Loading branch information
James Hogan committed Mar 2, 2013
1 parent 9da3ee9 commit 44c2451
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions arch/metag/kernel/metag_ksyms.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@

EXPORT_SYMBOL(clear_page);
EXPORT_SYMBOL(copy_page);
EXPORT_SYMBOL(empty_zero_page);

EXPORT_SYMBOL(pfn_base);
#ifdef CONFIG_FLATMEM
/* needed for the pfn_valid macro */
EXPORT_SYMBOL(max_pfn);
Expand Down
3 changes: 3 additions & 0 deletions arch/metag/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*
*/

#include <linux/export.h>
#include <linux/mm.h>
#include <linux/swap.h>
#include <linux/init.h>
Expand All @@ -25,10 +26,12 @@
#include <asm/fixmap.h>

unsigned long pfn_base;
EXPORT_SYMBOL(pfn_base);

pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_data;

unsigned long empty_zero_page;
EXPORT_SYMBOL(empty_zero_page);

extern char __user_gateway_start;
extern char __user_gateway_end;
Expand Down

0 comments on commit 44c2451

Please sign in to comment.