From: Eran Matityahu Date: Fri, 26 Jan 2018 14:11:37 +0000 (+0200) Subject: i2c: imx: Take mx6dqp in consideration in the I2C_PADS_INFO macro X-Git-Tag: v2018.03-rc2~47^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1ffd9e2e634b5d573210d8ae0081d325f919c6d;p=platform%2Fkernel%2Fu-boot.git i2c: imx: Take mx6dqp in consideration in the I2C_PADS_INFO macro We should take the MX6DP and MX6QP options in consideration in the I2C_PADS_INFO macro. Based on a patch by Pierluigi Passaro Signed-off-by: Eran Matityahu Reviewed-by: Fabio Estevam --- diff --git a/arch/arm/include/asm/mach-imx/mxc_i2c.h b/arch/arm/include/asm/mach-imx/mxc_i2c.h index 292bf0c..80018e4 100644 --- a/arch/arm/include/asm/mach-imx/mxc_i2c.h +++ b/arch/arm/include/asm/mach-imx/mxc_i2c.h @@ -88,8 +88,7 @@ struct mxc_i2c_bus { #define I2C_PADS_INFO(name) \ - (is_cpu_type(MXC_CPU_MX6Q) || is_cpu_type(MXC_CPU_MX6D)) ? \ - &mx6q_##name : &mx6s_##name + (is_mx6dq() || is_mx6dqp()) ? &mx6q_##name : &mx6s_##name #endif int setup_i2c(unsigned i2c_index, int speed, int slave_addr,