Lines Matching refs:match
30 asd->match.i2c.adapter_id == client->adapter->nr && in match_i2c()
31 asd->match.i2c.address == client->addr; in match_i2c()
40 return !strcmp(asd->match.device_name.name, dev_name(sd->dev)); in match_devname()
45 return sd->of_node == asd->match.of.node; in match_of()
50 if (!asd->match.custom.match) in match_custom()
54 return asd->match.custom.match(sd->dev, asd); in match_custom()
64 bool (*match)(struct v4l2_subdev *, struct v4l2_async_subdev *); in v4l2_async_belongs() local
71 match = match_custom; in v4l2_async_belongs()
74 match = match_devname; in v4l2_async_belongs()
77 match = match_i2c; in v4l2_async_belongs()
80 match = match_of; in v4l2_async_belongs()
89 if (match(sd, asd)) in v4l2_async_belongs()