diff options
author | Paul Gortmaker <[email protected]> | 2011-07-22 18:15:07 -0400 |
---|---|---|
committer | Paul Gortmaker <[email protected]> | 2011-10-31 19:30:43 -0400 |
commit | e9848d62ab265e355652988fb33a060a9a0b2893 (patch) | |
tree | 9f80f293c9f0e28904ea1adcbf7bdec8f1123eb1 | |
parent | 614f15b4fcec4d55641f8977316b4570f9dd1b70 (diff) |
powerpc: convert hvconsole.c to export.h ; fix implicit use of errno.h
This file is only exporting symbols and so should use export.h
and not module.h header. But in doing the conversion, we will
uncover that it was implicitly using errno.h via module.h:
CC arch/powerpc/platforms/pseries/hvconsole.o
arch/powerpc/platforms/pseries/hvconsole.c: In function 'hvc_put_chars':
arch/powerpc/platforms/pseries/hvconsole.c:77: error: 'EIO' undeclared (first use in this function)
Signed-off-by: Paul Gortmaker <[email protected]>
-rw-r--r-- | arch/powerpc/platforms/pseries/hvconsole.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/hvconsole.c b/arch/powerpc/platforms/pseries/hvconsole.c index 041e87ca1893..b344f94b0400 100644 --- a/arch/powerpc/platforms/pseries/hvconsole.c +++ b/arch/powerpc/platforms/pseries/hvconsole.c @@ -24,7 +24,8 @@ */ #include <linux/kernel.h> -#include <linux/module.h> +#include <linux/export.h> +#include <linux/errno.h> #include <asm/hvcall.h> #include <asm/hvconsole.h> #include "plpar_wrappers.h" |