Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

authored by

Heiner Kallweit and committed by
Mauro Carvalho Chehab
af082334 068fb7dd

+3 -2
+3 -2
drivers/media/rc/nuvoton-cir.c
··· 278 278 "unknown chip, id: 0x%02x 0x%02x, it may not work...", 279 279 nvt->chip_major, nvt->chip_minor); 280 280 else 281 - nvt_dbg("found %s or compatible: chip id: 0x%02x 0x%02x", 282 - chip_name, nvt->chip_major, nvt->chip_minor); 281 + dev_info(&nvt->pdev->dev, 282 + "found %s or compatible: chip id: 0x%02x 0x%02x", 283 + chip_name, nvt->chip_major, nvt->chip_minor); 283 284 284 285 nvt_efm_disable(nvt); 285 286 }