diff options
| author | Antti Palosaari <[email protected]> | 2014-11-03 22:01:56 -0300 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2014-11-04 18:21:12 -0200 |
| commit | fdc533a97b8ff9b722d4e4400bbaca8d9217b547 (patch) | |
| tree | 3efd3450045a76d61cb3d5e02db362380f4b5c52 | |
| parent | c3a80cd024527381c4020ae38252ce34867b5f73 (diff) | |
[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 <[email protected]>
Signed-off-by: Antti Palosaari <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
| -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 e64070156247..c17e34fd0fb4 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 */ |