diff options
| author | Colin Ian King <[email protected]> | 2021-01-13 11:05:17 +0100 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2021-02-06 08:36:42 +0100 |
| commit | ea12d248b0966d80f478a08e6138c6cb9b3883aa (patch) | |
| tree | 5a544b450666af45eab6fd85df50492e60f8e072 | |
| parent | 063b811f34650bf88e24998eb9c094607cb3b53e (diff) | |
media: i2c: fix spelling mistakes: "enpoint" -> "endpoint"
There are two spelling mistakes in dev_err messages. Fix these.
Signed-off-by: Colin Ian King <[email protected]>
Reviewed-by: Paul Kocialkowski <[email protected]>
Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
| -rw-r--r-- | drivers/media/i2c/ov5648.c | 2 | ||||
| -rw-r--r-- | drivers/media/i2c/ov8865.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/i2c/ov5648.c b/drivers/media/i2c/ov5648.c index 110190b322e2..eab7839ea093 100644 --- a/drivers/media/i2c/ov5648.c +++ b/drivers/media/i2c/ov5648.c @@ -2454,7 +2454,7 @@ static int ov5648_probe(struct i2c_client *client) handle = fwnode_graph_get_next_endpoint(dev_fwnode(dev), NULL); if (!handle) { - dev_err(dev, "unable to find enpoint node\n"); + dev_err(dev, "unable to find endpoint node\n"); return -EINVAL; } diff --git a/drivers/media/i2c/ov8865.c b/drivers/media/i2c/ov8865.c index b2099e38d0af..36a60fbc211d 100644 --- a/drivers/media/i2c/ov8865.c +++ b/drivers/media/i2c/ov8865.c @@ -2799,7 +2799,7 @@ static int ov8865_probe(struct i2c_client *client) handle = fwnode_graph_get_next_endpoint(dev_fwnode(dev), NULL); if (!handle) { - dev_err(dev, "unable to find enpoint node\n"); + dev_err(dev, "unable to find endpoint node\n"); return -EINVAL; } |