diff options
author | Antti Palosaari <crope@iki.fi> | 2014-11-04 01:01:56 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-11-04 20:21:12 (GMT) |
commit | fdc533a97b8ff9b722d4e4400bbaca8d9217b547 (patch) | |
tree | 3efd3450045a76d61cb3d5e02db362380f4b5c52 /drivers | |
parent | c3a80cd024527381c4020ae38252ce34867b5f73 (diff) | |
download | linux-fdc533a97b8ff9b722d4e4400bbaca8d9217b547.tar.xz |
[media] af9033: continue polling unless critical IO error
That case is not IO error, so better to jump out now, but still
continue polling.
Cc: Bimow Chen <Bimow.Chen@ite.com.tw>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb-frontends/af9033.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/af9033.c b/drivers/media/dvb-frontends/af9033.c index e640701..c17e34f 100644 --- a/drivers/media/dvb-frontends/af9033.c +++ b/drivers/media/dvb-frontends/af9033.c @@ -1103,7 +1103,7 @@ static void af9033_stat_work(struct work_struct *work) snr_val *= 2; break; default: - goto err; + goto err_schedule_delayed_work; } /* read current modulation */ |