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 <[email protected]>
---
 backport/backport-include/linux/i2c-mux.h |   11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 backport/backport-include/linux/i2c-mux.h

diff --git a/backport/backport-include/linux/i2c-mux.h 
b/backport/backport-include/linux/i2c-mux.h
new file mode 100644
index 0000000..a3a67ad
--- /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 <linux/i2c-mux.h>
+#include <linux/version.h>
+
+#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 */
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe backports" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to