This adds i2c_add_mux_adapter() also for kernel < 3.5. This is needed for some newly activated media driver. Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> --- backport/backport-include/linux/i2c-mux.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backport/backport-include/linux/i2c-mux.h b/backport/backport-include/linux/i2c-mux.h index a3a67ad..37db84d 100644 --- a/backport/backport-include/linux/i2c-mux.h +++ b/backport/backport-include/linux/i2c-mux.h @@ -3,7 +3,10 @@ #include_next <linux/i2c-mux.h> #include <linux/version.h> -#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,7,0)) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0)) +#define i2c_add_mux_adapter(parent, mux_dev, mux_priv, force_nr, chan_id, class, select, deselect) \ + i2c_add_mux_adapter(parent, mux_priv, force_nr, chan_id, select, deselect) +#elif (LINUX_VERSION_CODE < KERNEL_VERSION(3,7,0)) #define i2c_add_mux_adapter(parent, mux_dev, mux_priv, force_nr, chan_id, class, select, deselect) \ i2c_add_mux_adapter(parent, mux_dev, mux_priv, force_nr, chan_id, select, deselect) #endif -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html