diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-10-14 12:58:14 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-18 13:10:15 +0300 |
commit | 3b0cb24f96dc06d0c5c049e8327aad50c8b6ddb4 (patch) | |
tree | bb783c4ad6ca4865a2c5804acc1db27c208f8178 /drivers/media/pci/cx88/cx88-dsp.c | |
parent | e39682b5d96ae7a33a0f6b5578911913be8f14b6 (diff) | |
download | linux-3b0cb24f96dc06d0c5c049e8327aad50c8b6ddb4.tar.xz |
[media] cx88: use KERN_CONT where needed
Some continuation messages are not using KERN_CONT.
Since commit 563873318d32 ("Merge branch 'printk-cleanups'"),
this won't work as expected anymore. So, let's add KERN_CONT
to those lines.
While here, add missing log level annotations.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/pci/cx88/cx88-dsp.c')
-rw-r--r-- | drivers/media/pci/cx88/cx88-dsp.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/media/pci/cx88/cx88-dsp.c b/drivers/media/pci/cx88/cx88-dsp.c index 33f3c58f8197..57380c750702 100644 --- a/drivers/media/pci/cx88/cx88-dsp.c +++ b/drivers/media/pci/cx88/cx88-dsp.c @@ -257,12 +257,7 @@ static s16 *read_rds_samples(struct cx88_core *core, u32 *N) offset += 4; } - if (dsp_debug >= 2) { - dprintk(2, "RDS samples dump: "); - for (i = 0; i < sample_count; i++) - printk("%hd ", samples[i]); - printk(".\n"); - } + dprintk(2, "RDS samples dump: %*ph\n", sample_count, samples); return samples; } |