diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2020-03-04 15:23:12 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-11-27 10:58:30 +0100 |
commit | 9b1b0cb0636166187478ef68d5b95f5caea062ec (patch) | |
tree | 9f8074e42093e5254fff1ddd255b967a7284984b /drivers/media/i2c/max2175.c | |
parent | media: c8sectpfe: clean up some indenting (diff) | |
download | linux-9b1b0cb0636166187478ef68d5b95f5caea062ec.tar.xz linux-9b1b0cb0636166187478ef68d5b95f5caea062ec.zip |
media: max2175: fix max2175_set_csm_mode() error code
This is supposed to return negative error codes but the type is bool so
it returns true instead.
Fixes: b47b79d8a231 ("[media] media: i2c: max2175: Add MAX2175 support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/i2c/max2175.c')
-rw-r--r-- | drivers/media/i2c/max2175.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/max2175.c b/drivers/media/i2c/max2175.c index 03b4ed3a61b8..661208c9bfc5 100644 --- a/drivers/media/i2c/max2175.c +++ b/drivers/media/i2c/max2175.c @@ -503,7 +503,7 @@ static void max2175_set_bbfilter(struct max2175 *ctx) } } -static bool max2175_set_csm_mode(struct max2175 *ctx, +static int max2175_set_csm_mode(struct max2175 *ctx, enum max2175_csm_mode new_mode) { int ret = max2175_poll_csm_ready(ctx); |