fsl-rio: fix compile error
authorLiu Gang <Gang.Liu@freescale.com>
Fri, 11 Nov 2011 13:48:28 +0000 (21:48 +0800)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 14 Nov 2011 17:43:17 +0000 (12:43 -0500)
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@freescale.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

No differences found