Commit d8a10ac9 authored by Joe Perches's avatar Joe Perches Committed by Mauro Carvalho Chehab

[media] winbond-cir: Use current logging styles

Add pr_fmt, convert printks to pr_<level>.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarDavid Härdeman <david@hardeman.nu>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7de3461c
...@@ -41,6 +41,8 @@ ...@@ -41,6 +41,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h> #include <linux/module.h>
#include <linux/pnp.h> #include <linux/pnp.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
...@@ -1155,12 +1157,12 @@ wbcir_init(void) ...@@ -1155,12 +1157,12 @@ wbcir_init(void)
case IR_PROTOCOL_RC6: case IR_PROTOCOL_RC6:
break; break;
default: default:
printk(KERN_ERR DRVNAME ": Invalid power-on protocol\n"); pr_err("Invalid power-on protocol\n");
} }
ret = pnp_register_driver(&wbcir_driver); ret = pnp_register_driver(&wbcir_driver);
if (ret) if (ret)
printk(KERN_ERR DRVNAME ": Unable to register driver\n"); pr_err("Unable to register driver\n");
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment