Lines Matching refs:muxc
180 struct i2c_mux_core *muxc = i2c_get_clientdata(client); in pca9541_arbitrate() local
181 struct pca9541 *data = i2c_mux_priv(muxc); in pca9541_arbitrate()
249 static int pca9541_select_chan(struct i2c_mux_core *muxc, u32 chan) in pca9541_select_chan() argument
251 struct pca9541 *data = i2c_mux_priv(muxc); in pca9541_select_chan()
274 static int pca9541_release_chan(struct i2c_mux_core *muxc, u32 chan) in pca9541_release_chan() argument
276 struct pca9541 *data = i2c_mux_priv(muxc); in pca9541_release_chan()
290 struct i2c_mux_core *muxc; in pca9541_probe() local
307 muxc = i2c_mux_alloc(adap, &client->dev, 1, sizeof(*data), in pca9541_probe()
310 if (!muxc) in pca9541_probe()
313 data = i2c_mux_priv(muxc); in pca9541_probe()
316 i2c_set_clientdata(client, muxc); in pca9541_probe()
318 ret = i2c_mux_add_adapter(muxc, 0, 0, 0); in pca9541_probe()
330 struct i2c_mux_core *muxc = i2c_get_clientdata(client); in pca9541_remove() local
332 i2c_mux_del_adapters(muxc); in pca9541_remove()