mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 23:14:31 +08:00
Merge branch 'for-5.5/hidraw' into for-linus
- printk() -> pr_*() cleanup (Rishi Gupta)
This commit is contained in:
commit
09f5429ddf
@ -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",
|
||||
hid_warn(dev, "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",
|
||||
hid_warn(dev, "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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user