diff options
author | Stafford Horne <shorne@gmail.com> | 2017-03-14 22:54:22 +0900 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2017-05-15 22:02:33 +0900 |
commit | 1938852de55d3235c2d1a8be5787160a00d5c378 (patch) | |
tree | 87da6cecd5e9086b995ed7bf13d86ca403da7c8b /arch/openrisc/lib | |
parent | 706e71bed74bcd9f6638a90a0f4131c8c8235b6a (diff) |
openrisc: Switch to use export.h instead of module.h
Reduce dependencies on module.h since all we need here is export.h
for EXPORT_SYMBOL.
Fixes: f50169324df4 ("module.h: split out the EXPORT_SYMBOL into export.h")
Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch/openrisc/lib')
-rw-r--r-- | arch/openrisc/lib/delay.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/openrisc/lib/delay.c b/arch/openrisc/lib/delay.c index c82b09f4a106..8b13fdf43ec6 100644 --- a/arch/openrisc/lib/delay.c +++ b/arch/openrisc/lib/delay.c @@ -16,8 +16,9 @@ */ #include <linux/kernel.h> -#include <linux/module.h> +#include <linux/export.h> #include <linux/init.h> +#include <asm/param.h> #include <asm/delay.h> #include <asm/timex.h> #include <asm/processor.h> |