diff options
author | Alexander Stein <alexander.stein@systec-electronic.com> | 2014-07-24 11:05:21 +0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-09-01 18:00:01 +0400 |
commit | 58b71c3ec7b53e948cb0e59d783ab0ed0c4d767e (patch) | |
tree | b0cdaf5e943b26646a47e52618bb16bbebe12371 /arch/arm/mach-imx/iomux-v1.c | |
parent | 69e273c0b0a3c337a521d083374c918dc52c666f (diff) | |
download | linux-58b71c3ec7b53e948cb0e59d783ab0ed0c4d767e.tar.xz |
ARM: imx: iomux: Do not export symbol without public declaration
The iomux function declarations are in headers only accessible in this
directory. Thus those can't be used in any module. None of the
objects in this directory is tristate. Neither can the header be included
in out-of-tree modules.
Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/mach-imx/iomux-v1.c')
-rw-r--r-- | arch/arm/mach-imx/iomux-v1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/iomux-v1.c b/arch/arm/mach-imx/iomux-v1.c index 2b156d1d9e21..ecd543664644 100644 --- a/arch/arm/mach-imx/iomux-v1.c +++ b/arch/arm/mach-imx/iomux-v1.c @@ -153,7 +153,6 @@ int mxc_gpio_mode(int gpio_mode) return 0; } -EXPORT_SYMBOL(mxc_gpio_mode); static int imx_iomuxv1_setup_multiple(const int *list, unsigned count) { @@ -178,7 +177,6 @@ int mxc_gpio_setup_multiple_pins(const int *pin_list, unsigned count, ret = imx_iomuxv1_setup_multiple(pin_list, count); return ret; } -EXPORT_SYMBOL(mxc_gpio_setup_multiple_pins); int __init imx_iomuxv1_init(void __iomem *base, int numports) { |