diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2011-02-16 04:46:12 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-03-07 13:29:06 -0500 |
commit | ccb24d50b7ee242a2bf2dd208193f7335a3a0d7d (patch) | |
tree | d2708bfbaad7100e0f6faae959d6f88fe1bd325e /arch/arm/mach-mxs/system.c | |
parent | 2301dfa7be2cb3e6bdd07cc1cb349b5853c4d5ee (diff) |
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/system.c')
-rw-r--r-- | arch/arm/mach-mxs/system.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/system.c b/arch/arm/mach-mxs/system.c index 9343d7edd4f6..20ec3bddf7cd 100644 --- a/arch/arm/mach-mxs/system.c +++ b/arch/arm/mach-mxs/system.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/err.h> | 22 | #include <linux/err.h> |
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/init.h> | 24 | #include <linux/init.h> |
25 | #include <linux/module.h> | ||
25 | 26 | ||
26 | #include <asm/proc-fns.h> | 27 | #include <asm/proc-fns.h> |
27 | #include <asm/system.h> | 28 | #include <asm/system.h> |
@@ -135,3 +136,4 @@ error: | |||
135 | pr_err("%s(%p): module reset timeout\n", __func__, reset_addr); | 136 | pr_err("%s(%p): module reset timeout\n", __func__, reset_addr); |
136 | return -ETIMEDOUT; | 137 | return -ETIMEDOUT; |
137 | } | 138 | } |
139 | EXPORT_SYMBOL(mxs_reset_block); | ||