Lines Matching refs:muxc
179 struct i2c_mux_core *muxc = i2c_get_clientdata(client); in pca9541_arbitrate() local
180 struct pca9541 *data = i2c_mux_priv(muxc); in pca9541_arbitrate()
248 static int pca9541_select_chan(struct i2c_mux_core *muxc, u32 chan) in pca9541_select_chan() argument
250 struct pca9541 *data = i2c_mux_priv(muxc); in pca9541_select_chan()
273 static int pca9541_release_chan(struct i2c_mux_core *muxc, u32 chan) in pca9541_release_chan() argument
275 struct pca9541 *data = i2c_mux_priv(muxc); in pca9541_release_chan()
289 struct i2c_mux_core *muxc; in pca9541_probe() local
306 muxc = i2c_mux_alloc(adap, &client->dev, 1, sizeof(*data), in pca9541_probe()
309 if (!muxc) in pca9541_probe()
312 data = i2c_mux_priv(muxc); in pca9541_probe()
315 i2c_set_clientdata(client, muxc); in pca9541_probe()
317 ret = i2c_mux_add_adapter(muxc, 0, 0, 0); in pca9541_probe()
329 struct i2c_mux_core *muxc = i2c_get_clientdata(client); in pca9541_remove() local
331 i2c_mux_del_adapters(muxc); in pca9541_remove()