From 59efa051cd479b19725b166f0d0aa70444b72c8e Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Wed, 10 Apr 2013 23:06:46 +0000 Subject: arm: imx: Change iomux functions to void type They never return anything also than 0, so lets change the function to void instead. Signed-off-by: Stefan Roese Reviewed-by: Marek Vasut --- arch/arm/include/asm/imx-common/iomux-v3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/arm/include/asm/imx-common') diff --git a/arch/arm/include/asm/imx-common/iomux-v3.h b/arch/arm/include/asm/imx-common/iomux-v3.h index c34bb76..70bf3cd 100644 --- a/arch/arm/include/asm/imx-common/iomux-v3.h +++ b/arch/arm/include/asm/imx-common/iomux-v3.h @@ -97,8 +97,8 @@ typedef u64 iomux_v3_cfg_t; #define MUX_CONFIG_SION (0x1 << 4) -int imx_iomux_v3_setup_pad(iomux_v3_cfg_t pad); -int imx_iomux_v3_setup_multiple_pads(iomux_v3_cfg_t const *pad_list, +void imx_iomux_v3_setup_pad(iomux_v3_cfg_t pad); +void imx_iomux_v3_setup_multiple_pads(iomux_v3_cfg_t const *pad_list, unsigned count); #endif /* __MACH_IOMUX_V3_H__*/ -- cgit v1.1