mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
media: i2c: replace of_graph_get_next_endpoint()
From DT point of view, in general, drivers should be asking for a specific port number because their function is fixed in the binding. of_graph_get_next_endpoint() doesn't match to this concept. Simply replace - of_graph_get_next_endpoint(xxx, NULL); + of_graph_get_endpoint_by_regs(xxx, 0, -1); Link: https://lore.kernel.org/r/20240202174941.GA310089-robh@kernel.org Link: https://lore.kernel.org/r/9d1e99b0-892d-4a72-a9b3-886b8ed094b0@xs4all.nl Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
7b61650b3c
commit
c188df3db1
@ -403,7 +403,7 @@ adv7343_get_pdata(struct i2c_client *client)
|
||||
if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
|
||||
return client->dev.platform_data;
|
||||
|
||||
np = of_graph_get_next_endpoint(client->dev.of_node, NULL);
|
||||
np = of_graph_get_endpoint_by_regs(client->dev.of_node, 0, -1);
|
||||
if (!np)
|
||||
return NULL;
|
||||
|
||||
|
@ -3204,8 +3204,8 @@ static int adv76xx_parse_dt(struct adv76xx_state *state)
|
||||
|
||||
np = state->i2c_clients[ADV76XX_PAGE_IO]->dev.of_node;
|
||||
|
||||
/* Parse the endpoint. */
|
||||
endpoint = of_graph_get_next_endpoint(np, NULL);
|
||||
/* FIXME: Parse the endpoint. */
|
||||
endpoint = of_graph_get_endpoint_by_regs(np, -1, -1);
|
||||
if (!endpoint)
|
||||
return -EINVAL;
|
||||
|
||||
|
@ -1078,7 +1078,7 @@ mt9p031_get_pdata(struct i2c_client *client)
|
||||
if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
|
||||
return client->dev.platform_data;
|
||||
|
||||
np = of_graph_get_next_endpoint(client->dev.of_node, NULL);
|
||||
np = of_graph_get_endpoint_by_regs(client->dev.of_node, 0, -1);
|
||||
if (!np)
|
||||
return NULL;
|
||||
|
||||
|
@ -1006,7 +1006,7 @@ mt9v032_get_pdata(struct i2c_client *client)
|
||||
if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
|
||||
return client->dev.platform_data;
|
||||
|
||||
np = of_graph_get_next_endpoint(client->dev.of_node, NULL);
|
||||
np = of_graph_get_endpoint_by_regs(client->dev.of_node, 0, -1);
|
||||
if (!np)
|
||||
return NULL;
|
||||
|
||||
|
@ -1388,7 +1388,7 @@ ov2659_get_pdata(struct i2c_client *client)
|
||||
if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
|
||||
return client->dev.platform_data;
|
||||
|
||||
endpoint = of_graph_get_next_endpoint(client->dev.of_node, NULL);
|
||||
endpoint = of_graph_get_endpoint_by_regs(client->dev.of_node, 0, -1);
|
||||
if (!endpoint)
|
||||
return NULL;
|
||||
|
||||
|
@ -1059,7 +1059,7 @@ static int ov5645_probe(struct i2c_client *client)
|
||||
ov5645->i2c_client = client;
|
||||
ov5645->dev = dev;
|
||||
|
||||
endpoint = of_graph_get_next_endpoint(dev->of_node, NULL);
|
||||
endpoint = of_graph_get_endpoint_by_regs(dev->of_node, 0, -1);
|
||||
if (!endpoint) {
|
||||
dev_err(dev, "endpoint node not found\n");
|
||||
return -EINVAL;
|
||||
|
@ -1363,7 +1363,7 @@ static int ov5647_parse_dt(struct ov5647 *sensor, struct device_node *np)
|
||||
struct device_node *ep;
|
||||
int ret;
|
||||
|
||||
ep = of_graph_get_next_endpoint(np, NULL);
|
||||
ep = of_graph_get_endpoint_by_regs(np, 0, -1);
|
||||
if (!ep)
|
||||
return -EINVAL;
|
||||
|
||||
|
@ -1568,7 +1568,7 @@ static int s5c73m3_get_dt_data(struct s5c73m3 *state)
|
||||
"failed to request gpio S5C73M3_RST\n");
|
||||
gpiod_set_consumer_name(state->reset, "S5C73M3_RST");
|
||||
|
||||
node_ep = of_graph_get_next_endpoint(node, NULL);
|
||||
node_ep = of_graph_get_endpoint_by_regs(node, 0, -1);
|
||||
if (!node_ep) {
|
||||
dev_warn(dev, "no endpoint defined for node: %pOF\n", node);
|
||||
return 0;
|
||||
|
@ -1849,7 +1849,7 @@ static int s5k5baf_parse_device_node(struct s5k5baf *state, struct device *dev)
|
||||
state->mclk_frequency);
|
||||
}
|
||||
|
||||
node_ep = of_graph_get_next_endpoint(node, NULL);
|
||||
node_ep = of_graph_get_endpoint_by_regs(node, 0, -1);
|
||||
if (!node_ep) {
|
||||
dev_err(dev, "no endpoint defined at node %pOF\n", node);
|
||||
return -EINVAL;
|
||||
|
@ -1895,7 +1895,7 @@ static int tc358743_probe_of(struct tc358743_state *state)
|
||||
return dev_err_probe(dev, PTR_ERR(refclk),
|
||||
"failed to get refclk\n");
|
||||
|
||||
ep = of_graph_get_next_endpoint(dev->of_node, NULL);
|
||||
ep = of_graph_get_endpoint_by_regs(dev->of_node, 0, -1);
|
||||
if (!ep) {
|
||||
dev_err(dev, "missing endpoint node\n");
|
||||
return -EINVAL;
|
||||
|
@ -2310,7 +2310,7 @@ static int tda1997x_parse_dt(struct tda1997x_state *state)
|
||||
pdata->vidout_sel_de = DE_FREF_SEL_DE_VHREF;
|
||||
|
||||
np = state->client->dev.of_node;
|
||||
ep = of_graph_get_next_endpoint(np, NULL);
|
||||
ep = of_graph_get_endpoint_by_regs(np, 0, -1);
|
||||
if (!ep)
|
||||
return -EINVAL;
|
||||
|
||||
|
@ -987,7 +987,7 @@ tvp514x_get_pdata(struct i2c_client *client)
|
||||
if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
|
||||
return client->dev.platform_data;
|
||||
|
||||
endpoint = of_graph_get_next_endpoint(client->dev.of_node, NULL);
|
||||
endpoint = of_graph_get_endpoint_by_regs(client->dev.of_node, 0, -1);
|
||||
if (!endpoint)
|
||||
return NULL;
|
||||
|
||||
|
@ -893,7 +893,7 @@ tvp7002_get_pdata(struct i2c_client *client)
|
||||
if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
|
||||
return client->dev.platform_data;
|
||||
|
||||
endpoint = of_graph_get_next_endpoint(client->dev.of_node, NULL);
|
||||
endpoint = of_graph_get_endpoint_by_regs(client->dev.of_node, 0, -1);
|
||||
if (!endpoint)
|
||||
return NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user