aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/af9033.c
diff options
context:
space:
mode:
authorVictor Toso <me@victortoso.com>2018-10-30 12:14:48 -0400
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2018-12-03 13:24:42 -0500
commit09a446d27843e4de43af5b0f3ed7fb7c013fc7b6 (patch)
tree7b6c886cb3aa49e398710f69a2674ed7c3645cc5 /drivers/media/dvb-frontends/af9033.c
parentmedia: dib0700: fix spelling mistake "Amplifyer" -> "Amplifier" (diff)
downloadlinux-dev-09a446d27843e4de43af5b0f3ed7fb7c013fc7b6.tar.xz
linux-dev-09a446d27843e4de43af5b0f3ed7fb7c013fc7b6.zip
media: af9033: Remove duplicated switch statement
The switch before set is_af9035 or is_it9135 which makes the second switch redundant. Keeping the comment as to avoid sleep on IT9135. Signed-off-by: Victor Toso <me@victortoso.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/dvb-frontends/af9033.c')
-rw-r--r--drivers/media/dvb-frontends/af9033.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/drivers/media/dvb-frontends/af9033.c b/drivers/media/dvb-frontends/af9033.c
index 0cd57013ea25..23b831ce3439 100644
--- a/drivers/media/dvb-frontends/af9033.c
+++ b/drivers/media/dvb-frontends/af9033.c
@@ -1137,16 +1137,8 @@ static int af9033_probe(struct i2c_client *client,
buf[4], buf[5], buf[6], buf[7]);
/* Sleep as chip seems to be partly active by default */
- switch (dev->cfg.tuner) {
- case AF9033_TUNER_IT9135_38:
- case AF9033_TUNER_IT9135_51:
- case AF9033_TUNER_IT9135_52:
- case AF9033_TUNER_IT9135_60:
- case AF9033_TUNER_IT9135_61:
- case AF9033_TUNER_IT9135_62:
- /* IT9135 did not like to sleep at that early */
- break;
- default:
+ /* IT9135 did not like to sleep at that early */
+ if (dev->is_af9035) {
ret = regmap_write(dev->regmap, 0x80004c, 0x01);
if (ret)
goto err_regmap_exit;