diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-08-01 16:16:48 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-09-17 19:34:27 +0200 |
commit | c135e99748fe543da9dedca4d2dde77434c4c910 (patch) | |
tree | 6517d19bbbd6b0bd7f6bd3db7e187543b87d827f /drivers/media/i2c/tvp5150.c | |
parent | media: tvp5150: implement decoder lock when irq is not used (diff) | |
download | linux-c135e99748fe543da9dedca4d2dde77434c4c910.tar.xz linux-c135e99748fe543da9dedca4d2dde77434c4c910.zip |
media: tvp5150: get rid of some warnings
The recent tvp5150 patchset added two new warnings:
drivers/media/i2c/tvp5150.c: In function 'tvp5150_querystd':
drivers/media/i2c/tvp5150.c:829:18: warning: unused variable 'decoder' [-Wunused-variable]
struct tvp5150 *decoder = to_tvp5150(sd);
^~~~~~~
drivers/media/i2c/tvp5150.c:1522:6: warning: no previous prototype for 'tvp5150_volatile_reg' [-Wmissing-prototypes]
bool tvp5150_volatile_reg(struct device *dev, unsigned int reg)
^~~~~~~~~~~~~~~~~~~~
Get rid of them.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/i2c/tvp5150.c')
-rw-r--r-- | drivers/media/i2c/tvp5150.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c index f4cd73d90f7f..f5b234e4599d 100644 --- a/drivers/media/i2c/tvp5150.c +++ b/drivers/media/i2c/tvp5150.c @@ -826,8 +826,6 @@ static int query_lock(struct v4l2_subdev *sd) static int tvp5150_querystd(struct v4l2_subdev *sd, v4l2_std_id *std_id) { - struct tvp5150 *decoder = to_tvp5150(sd); - *std_id = query_lock(sd) ? tvp5150_read_std(sd) : V4L2_STD_UNKNOWN; return 0; @@ -1484,7 +1482,7 @@ static const struct regmap_range tvp5150_readable_ranges[] = { }, }; -bool tvp5150_volatile_reg(struct device *dev, unsigned int reg) +static bool tvp5150_volatile_reg(struct device *dev, unsigned int reg) { switch (reg) { case TVP5150_VERT_LN_COUNT_MSB: |