summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/muxes/i2c-mux-gpio.c
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2024-04-15 22:48:42 +0200
committerAndi Shyti <andi.shyti@kernel.org>2024-05-06 00:56:30 +0200
commit073e58bf6b1a689da2ffcfc7fc515005f8794018 (patch)
tree08daec61e4c17a4a28d32342f07811fe05c79efb /drivers/i2c/muxes/i2c-mux-gpio.c
parent780868fc480ee8e89e8db89c7946716cc75a36e9 (diff)
downloadlinux-stable-073e58bf6b1a689da2ffcfc7fc515005f8794018.tar.gz
linux-stable-073e58bf6b1a689da2ffcfc7fc515005f8794018.tar.bz2
linux-stable-073e58bf6b1a689da2ffcfc7fc515005f8794018.zip
i2c: mux: gpio: remove support for class-based device instantiation
i801 as only user of gpio i2c mux removed support for class-based device instantiation on muxed busses. Class-based device instantiation is a legacy mechanism and shouldn't be used in new code, therefore remove support also here. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Diffstat (limited to 'drivers/i2c/muxes/i2c-mux-gpio.c')
-rw-r--r--drivers/i2c/muxes/i2c-mux-gpio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/i2c/muxes/i2c-mux-gpio.c b/drivers/i2c/muxes/i2c-mux-gpio.c
index 6b979a0a6ab8..0fbb33a3d518 100644
--- a/drivers/i2c/muxes/i2c-mux-gpio.c
+++ b/drivers/i2c/muxes/i2c-mux-gpio.c
@@ -206,9 +206,8 @@ static int i2c_mux_gpio_probe(struct platform_device *pdev)
for (i = 0; i < mux->data.n_values; i++) {
u32 nr = mux->data.base_nr ? (mux->data.base_nr + i) : 0;
- unsigned int class = mux->data.classes ? mux->data.classes[i] : 0;
- ret = i2c_mux_add_adapter(muxc, nr, mux->data.values[i], class);
+ ret = i2c_mux_add_adapter(muxc, nr, mux->data.values[i], 0);
if (ret)
goto add_adapter_failed;
}