lkml.org 
[lkml]   [2019]   [Sep]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH v2] HID: hidraw: replace printk() with corresponding pr_xx() variant
Date
This commit replaces direct invocations of printk with
their appropriate pr_info/warn() variant.

Signed-off-by: Rishi Gupta <gupt21@gmail.com>
---
Changes in v2:
- Removed manually adding prefix "hidraw:".

drivers/hid/hidraw.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/hid/hidraw.c b/drivers/hid/hidraw.c
index 006bd6f..2d082f3 100644
--- a/drivers/hid/hidraw.c
+++ b/drivers/hid/hidraw.c
@@ -197,14 +197,14 @@ static ssize_t hidraw_get_report(struct file *file, char __user *buffer, size_t
}

if (count > HID_MAX_BUFFER_SIZE) {
- printk(KERN_WARNING "hidraw: pid %d passed too large report\n",
+ pr_warn("pid %d passed too large report\n",
task_pid_nr(current));
ret = -EINVAL;
goto out;
}

if (count < 2) {
- printk(KERN_WARNING "hidraw: pid %d passed too short report\n",
+ pr_warn("pid %d passed too short report\n",
task_pid_nr(current));
ret = -EINVAL;
goto out;
@@ -597,7 +597,7 @@ int __init hidraw_init(void)
if (result < 0)
goto error_class;

- printk(KERN_INFO "hidraw: raw HID events driver (C) Jiri Kosina\n");
+ pr_info("raw HID events driver (C) Jiri Kosina\n");
out:
return result;

--
2.7.4
\
 
 \ /
  Last update: 2019-09-18 18:29    [W:0.072 / U:0.148 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site