diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-10-14 10:44:04 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-18 10:02:47 -0200 |
commit | cc8e7ff440668d3934e12139d5daae94f4be356e (patch) | |
tree | 4aef2714bb99187bde5e51e3a848533646b315a6 /drivers/media/usb/dvb-usb | |
parent | 0a6dc89ae403cb41872249d3d85efa6d50f7f097 (diff) | |
download | talos-obmc-linux-cc8e7ff440668d3934e12139d5daae94f4be356e.tar.gz talos-obmc-linux-cc8e7ff440668d3934e12139d5daae94f4be356e.zip |
[media] af9005: remove a printk that would require a KERN_CONT
The dvb-usb system has its own macro to print hexa dumps
(debug_dump). Such macro doesn't support messages with
KERN_CONT after commit 563873318d32 ("Merge branch 'printk-cleanups'").
So, let's get rid of a printk() that would be assuming that
this would work.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb')
-rw-r--r-- | drivers/media/usb/dvb-usb/af9005.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/af9005.c b/drivers/media/usb/dvb-usb/af9005.c index 7853261906b1..f5f476841aea 100644 --- a/drivers/media/usb/dvb-usb/af9005.c +++ b/drivers/media/usb/dvb-usb/af9005.c @@ -826,7 +826,6 @@ static int af9005_frontend_attach(struct dvb_usb_adapter *adap) printk("EEPROM DUMP\n"); for (i = 0; i < 255; i += 8) { af9005_read_eeprom(adap->dev, i, buf, 8); - printk("ADDR %x ", i); debug_dump(buf, 8, printk); } } |