From: Christophe JAILLET Date: Sun, 21 Jul 2019 19:04:23 +0000 (-0400) Subject: media: ov2680: fix a typo in a function name X-Git-Tag: for-linus-2019-09-27~105^2~223 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=913c55a86400e0b3c99164a71a826ffb860c26c4;p=linux-block.git media: ov2680: fix a typo in a function name All functions in this file starts with 'ov2680_', except ov2860_parse_dt(). This is likely a typo. rename it to 'ov2680_parse_dt()' (6 and 8) Signed-off-by: Christophe JAILLET Signed-off-by: Sakari Ailus Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/ov2680.c b/drivers/media/i2c/ov2680.c index 164f983c1814..59cdbc33658c 100644 --- a/drivers/media/i2c/ov2680.c +++ b/drivers/media/i2c/ov2680.c @@ -1020,7 +1020,7 @@ static int ov2680_check_id(struct ov2680_dev *sensor) return 0; } -static int ov2860_parse_dt(struct ov2680_dev *sensor) +static int ov2680_parse_dt(struct ov2680_dev *sensor) { struct device *dev = ov2680_to_dev(sensor); int ret; @@ -1061,7 +1061,7 @@ static int ov2680_probe(struct i2c_client *client) sensor->i2c_client = client; - ret = ov2860_parse_dt(sensor); + ret = ov2680_parse_dt(sensor); if (ret < 0) return -EINVAL;