aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/nuvoton-cir.c
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2015-10-29 19:23:22 -0200
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-11-19 09:37:11 -0200
commitaf082334338fdbd2ad13de430f022aeb0207531e (patch)
tree93634fcaa9a031ed49816d35ff0688dc87432f4f /drivers/media/rc/nuvoton-cir.c
parent[media] media: rc: nuvoton-cir: simplify debug code (diff)
downloadlinux-dev-af082334338fdbd2ad13de430f022aeb0207531e.tar.xz
linux-dev-af082334338fdbd2ad13de430f022aeb0207531e.zip
[media] media: rc: nuvoton-cir: switch chip detection message to info level
Switch the info about the detected chip type from debug to info level as it might be useful not only for debugging purposes. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/rc/nuvoton-cir.c')
-rw-r--r--drivers/media/rc/nuvoton-cir.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/rc/nuvoton-cir.c b/drivers/media/rc/nuvoton-cir.c
index ee1b14ecbed5..ddba638571a9 100644
--- a/drivers/media/rc/nuvoton-cir.c
+++ b/drivers/media/rc/nuvoton-cir.c
@@ -278,8 +278,9 @@ static void nvt_hw_detect(struct nvt_dev *nvt)
"unknown chip, id: 0x%02x 0x%02x, it may not work...",
nvt->chip_major, nvt->chip_minor);
else
- nvt_dbg("found %s or compatible: chip id: 0x%02x 0x%02x",
- chip_name, nvt->chip_major, nvt->chip_minor);
+ dev_info(&nvt->pdev->dev,
+ "found %s or compatible: chip id: 0x%02x 0x%02x",
+ chip_name, nvt->chip_major, nvt->chip_minor);
nvt_efm_disable(nvt);
}