[PATCH] fsl-rio: fix compile error
Bounine, Alexandre
Alexandre.Bounine at idt.com
Sat Nov 12 03:49:45 EST 2011
On Fri, Nov 11, 2011 at 8:48 AM Liu Gang <Gang.Liu at freescale.com> wrote:
> Sent: Friday, November 11, 2011 8:48 AM
> To: linuxppc-dev at lists.ozlabs.org; Bounine, Alexandre
> Cc: akpm at linux-foundation.org; linux-kernel at vger.kernel.org;
> paul.gortmaker at windriver.com; r58472 at freescale.com;
> B11780 at freescale.com; r61911 at freescale.com; Liu Gang
> Subject: [PATCH] fsl-rio: fix compile error
>
> The "#include <linux/module.h>" was replaced by "#include
> <linux/export.h>"
> in the patch "powerpc: various straight conversions from module.h -->
> export.h".
> This will cause the following compile problem:
> arch/powerpc/sysdev/fsl_rio.c: In function 'fsl_rio_mcheck_exception':
> arch/powerpc/sysdev/fsl_rio.c:296: error: implicit declaration of
> function 'search_exception_tables'.
>
> The file fsl_rio.c needs the declaration of function
> "search_exception_tables"
> in the header file "linux/module.h".
>
> Signed-off-by: Liu Gang <Gang.Liu at freescale.com>
> ---
> arch/powerpc/sysdev/fsl_rio.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/powerpc/sysdev/fsl_rio.c
> b/arch/powerpc/sysdev/fsl_rio.c
> index de170fd..22ffccd 100644
> --- a/arch/powerpc/sysdev/fsl_rio.c
> +++ b/arch/powerpc/sysdev/fsl_rio.c
> @@ -23,7 +23,7 @@
> */
>
> #include <linux/init.h>
> -#include <linux/export.h>
> +#include <linux/module.h>
> #include <linux/types.h>
> #include <linux/dma-mapping.h>
> #include <linux/interrupt.h>
> --
> 1.7.3.1
>
Acked-by: Alexandre Bounine <alexandre.bounine at idt.com>
More information about the Linuxppc-dev
mailing list