> +static int mdio_mux_multiplexer_switch_fn(int current_child, int > desired_child, > + void *data) > +{ > + struct platform_device *pdev; > + struct mdio_mux_multiplexer_state *s; > + int ret = 0; > + > + pdev = (struct platform_device *)data; > + s = (struct mdio_mux_multiplexer_state *)platform_get_drvdata(pdev);
platform_get_drvdata() returns a void *. So you don't need the cast. > + if (current_child ^ desired_child) { > + if (current_child != -1) > + ret = mux_control_deselect(s->muxc); > + if (ret) > + return ret; Please use {} here, so you check the error when current_child != -1. > + > + ret = mux_control_select(s->muxc, desired_child); > + if (!ret) > + dev_dbg(&pdev->dev, "%s %d -> %d\n", __func__, > + current_child, desired_child); > + } > + > + return ret; > +} > + > +static int mdio_mux_multiplexer_probe(struct platform_device *pdev) > +{ > + struct device *dev = &pdev->dev; > + struct mdio_mux_multiplexer_state *s; > + int ret = 0; > + > + s = devm_kzalloc(&pdev->dev, sizeof(*s), GFP_KERNEL); > + if (!s) > + return -ENOMEM; > + > + s->muxc = devm_mux_control_get(dev, NULL); > + if (IS_ERR(s->muxc)) { > + ret = PTR_ERR(s->muxc); > + if (ret != -EPROBE_DEFER) > + dev_err(&pdev->dev, "Failed to get mux: %d\n", ret); > + return ret; > + } > + > + platform_set_drvdata(pdev, s); > + > + ret = mdio_mux_init(&pdev->dev, pdev->dev.of_node, > + mdio_mux_multiplexer_switch_fn, &s->mux_handle, > + pdev, NULL); > + > + return ret; > +} > + > +static int mdio_mux_multiplexer_remove(struct platform_device *pdev) > +{ > + struct mdio_mux_multiplexer_state *s = platform_get_drvdata(pdev); > + > + mdio_mux_uninit(s->mux_handle); I've never used the multiplexer framework before. But i think you need a call to mux_control_deselect() here in order to unlock the multiplexer. Without that, it will deadlock when you reload the module. Andrew