From: Hauke Mehrtens Date: Wed, 1 Jan 2014 23:43:08 +0000 (+0100) Subject: backports: fix i2c_add_mux_adapter() parameters X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8a094bd6ab08cad4bc0ff329d08af92f4851dda3;p=openwrt%2Fstaging%2Fblogic.git backports: fix i2c_add_mux_adapter() parameters The class parameter was added in kernel 3.7 to i2c_add_mux_adapter() and could just be ignored by older kernel versions. Signed-off-by: Hauke Mehrtens --- diff --git a/backport/backport-include/linux/i2c-mux.h b/backport/backport-include/linux/i2c-mux.h new file mode 100644 index 000000000000..a3a67ad615ca --- /dev/null +++ b/backport/backport-include/linux/i2c-mux.h @@ -0,0 +1,11 @@ +#ifndef __BACKPORT_LINUX_I2C_MUX_H +#define __BACKPORT_LINUX_I2C_MUX_H +#include_next +#include + +#if (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 + +#endif /* __BACKPORT_LINUX_I2C_MUX_H */