diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-04-30 07:15:20 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-05-13 10:08:33 -0300 |
commit | 51626557ace26ebc48d5d56c85675fb106d839c9 (patch) | |
tree | ebb8853cfda6ad9f5d185a7884499cb9cddb3b9a /drivers/media/pci/saa7134/saa7134-core.c | |
parent | e43c1732addce62ba50ce1a37009c104b585ac45 (diff) | |
download | linux-51626557ace26ebc48d5d56c85675fb106d839c9.tar.gz linux-51626557ace26ebc48d5d56c85675fb106d839c9.tar.bz2 linux-51626557ace26ebc48d5d56c85675fb106d839c9.zip |
[media] saa7134: use pr_warn() on some places where no KERN_foo were used
On a few places, mostly during board detection, some printk()
macros were called without especifying any message level.
Those are actually warnings. So, use pr_warn() for them.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/pci/saa7134/saa7134-core.c')
-rw-r--r-- | drivers/media/pci/saa7134/saa7134-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/saa7134/saa7134-core.c b/drivers/media/pci/saa7134/saa7134-core.c index c206148f816b..83dbb443214e 100644 --- a/drivers/media/pci/saa7134/saa7134-core.c +++ b/drivers/media/pci/saa7134/saa7134-core.c @@ -947,7 +947,7 @@ static int saa7134_initdev(struct pci_dev *pci_dev, dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0)); pci_set_master(pci_dev); if (!pci_dma_supported(pci_dev, DMA_BIT_MASK(32))) { - printk("%s: Oops: no 32bit PCI DMA ???\n",dev->name); + pr_warn("%s: Oops: no 32bit PCI DMA ???\n", dev->name); err = -EIO; goto fail1; } |