diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2009-05-20 03:57:10 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 17:21:09 -0400 |
commit | 302e8acc4137821cd30514da3d91ac109b461c7d (patch) | |
tree | 7f01ebbe8751e435817f7c4d820718d5c72f21a0 /drivers/media/dvb/frontends/mt312.c | |
parent | 766ed64de554fda08ceb927d36279eabcb08acb3 (diff) |
V4L/DVB (11828): Reducing print-level of I2C error prints
Reducing the print-levle of I2C error prints cleans some unwanted but
unavoidable errors from default syslog-level.
Signed-off-by: Matthias Schwarzott <zzam@gentoo.org>
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/mt312.c')
-rw-r--r-- | drivers/media/dvb/frontends/mt312.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/mt312.c b/drivers/media/dvb/frontends/mt312.c index 5ac9b15920f8..a621f727935f 100644 --- a/drivers/media/dvb/frontends/mt312.c +++ b/drivers/media/dvb/frontends/mt312.c | |||
@@ -77,7 +77,7 @@ static int mt312_read(struct mt312_state *state, const enum mt312_reg_addr reg, | |||
77 | ret = i2c_transfer(state->i2c, msg, 2); | 77 | ret = i2c_transfer(state->i2c, msg, 2); |
78 | 78 | ||
79 | if (ret != 2) { | 79 | if (ret != 2) { |
80 | printk(KERN_ERR "%s: ret == %d\n", __func__, ret); | 80 | printk(KERN_DEBUG "%s: ret == %d\n", __func__, ret); |
81 | return -EREMOTEIO; | 81 | return -EREMOTEIO; |
82 | } | 82 | } |
83 | 83 | ||