diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-22 17:18:16 (GMT) |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 23:30:53 (GMT) |
commit | 066bcaca51946c8305e3d637a795e8ccf8dbd3cf (patch) | |
tree | c500a6f3d9b21ddf25ba3dd3e45a6925e44f8e3f /arch/sparc/kernel/hvapi.c | |
parent | 7b64db608a441893e180f46fa160e8fae4c5a714 (diff) | |
download | linux-fsl-qoriq-066bcaca51946c8305e3d637a795e8ccf8dbd3cf.tar.xz |
sparc: move symbol exporters to use export.h not module.h
Many of the core sparc kernel files are not modules, but just
including module.h for exporting symbols. Now these files can
use the lighter footprint export.h for this role.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/sparc/kernel/hvapi.c')
-rw-r--r-- | arch/sparc/kernel/hvapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/hvapi.c b/arch/sparc/kernel/hvapi.c index c2d055d..8593672 100644 --- a/arch/sparc/kernel/hvapi.c +++ b/arch/sparc/kernel/hvapi.c @@ -3,7 +3,7 @@ * Copyright (C) 2007 David S. Miller <davem@davemloft.net> */ #include <linux/kernel.h> -#include <linux/module.h> +#include <linux/export.h> #include <linux/init.h> #include <asm/hypervisor.h> |