aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mxs
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-02-16 10:46:12 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-03-07 19:29:06 +0100
commitccb24d50b7ee242a2bf2dd208193f7335a3a0d7d (patch)
treed2708bfbaad7100e0f6faae959d6f88fe1bd325e /arch/arm/mach-mxs
parent2301dfa7be2cb3e6bdd07cc1cb349b5853c4d5ee (diff)
downloadkernel_samsung_smdk4412-ccb24d50b7ee242a2bf2dd208193f7335a3a0d7d.tar.gz
kernel_samsung_smdk4412-ccb24d50b7ee242a2bf2dd208193f7335a3a0d7d.tar.bz2
kernel_samsung_smdk4412-ccb24d50b7ee242a2bf2dd208193f7335a3a0d7d.zip
ARM: mxs: Add missing EXPORT_SYMBOL for mxs_reset_block
It is used for example in the i2c driver which can be compiled modular. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mxs')
-rw-r--r--arch/arm/mach-mxs/system.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/system.c b/arch/arm/mach-mxs/system.c
index 9343d7edd4f..20ec3bddf7c 100644
--- a/arch/arm/mach-mxs/system.c
+++ b/arch/arm/mach-mxs/system.c
@@ -22,6 +22,7 @@
#include <linux/err.h>
#include <linux/delay.h>
#include <linux/init.h>
+#include <linux/module.h>
#include <asm/proc-fns.h>
#include <asm/system.h>
@@ -135,3 +136,4 @@ error:
pr_err("%s(%p): module reset timeout\n", __func__, reset_addr);
return -ETIMEDOUT;
}
+EXPORT_SYMBOL(mxs_reset_block);