aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-apple.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-12-09 22:29:03 -0500
committerJiri Kosina <jkosina@suse.cz>2010-12-10 09:10:38 -0500
commit4291ee305e9bb0699504a66f0e2b7aefcf0512a5 (patch)
tree3996b77eb64d4f3b76a0799f30a5b2ba6cbc9ddb /drivers/hid/hid-apple.c
parent5bea7660bba973dc5e8e9d92b11fb1dd5b524ebf (diff)
HID: Add and use hid_<level>: dev_<level> equivalents
Neaten current uses of dev_<level> by adding and using hid specific hid_<level> macros. Convert existing uses of dev_<level> uses to hid_<level>. Convert hid-pidff printk uses to hid_<level>. Remove err_hid and use hid_err instead. Add missing newlines to logging messages where necessary. Coalesce format strings. Add and use pr_fmt(fmt) KBUILD_MODNAME ": " fmt Other miscellaneous changes: Add const struct hid_device * argument to hid-core functions extract() and implement() so hid_<level> can be used by them. Fix bad indentation in hid-core hid_input_field function that calls extract() function above. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-apple.c')
-rw-r--r--drivers/hid/hid-apple.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c
index 8aa71750a23c..61aa71233392 100644
--- a/drivers/hid/hid-apple.c
+++ b/drivers/hid/hid-apple.c
@@ -16,6 +16,8 @@
16 * any later version. 16 * any later version.
17 */ 17 */
18 18
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
19#include <linux/device.h> 21#include <linux/device.h>
20#include <linux/hid.h> 22#include <linux/hid.h>
21#include <linux/module.h> 23#include <linux/module.h>
@@ -280,8 +282,8 @@ static __u8 *apple_report_fixup(struct hid_device *hdev, __u8 *rdesc,
280 282
281 if ((asc->quirks & APPLE_RDESC_JIS) && *rsize >= 60 && 283 if ((asc->quirks & APPLE_RDESC_JIS) && *rsize >= 60 &&
282 rdesc[53] == 0x65 && rdesc[59] == 0x65) { 284 rdesc[53] == 0x65 && rdesc[59] == 0x65) {
283 dev_info(&hdev->dev, "fixing up MacBook JIS keyboard report " 285 hid_info(hdev,
284 "descriptor\n"); 286 "fixing up MacBook JIS keyboard report descriptor\n");
285 rdesc[53] = rdesc[59] = 0xe7; 287 rdesc[53] = rdesc[59] = 0xe7;
286 } 288 }
287 return rdesc; 289 return rdesc;
@@ -351,7 +353,7 @@ static int apple_probe(struct hid_device *hdev,
351 353
352 asc = kzalloc(sizeof(*asc), GFP_KERNEL); 354 asc = kzalloc(sizeof(*asc), GFP_KERNEL);
353 if (asc == NULL) { 355 if (asc == NULL) {
354 dev_err(&hdev->dev, "can't alloc apple descriptor\n"); 356 hid_err(hdev, "can't alloc apple descriptor\n");
355 return -ENOMEM; 357 return -ENOMEM;
356 } 358 }
357 359
@@ -361,7 +363,7 @@ static int apple_probe(struct hid_device *hdev,
361 363
362 ret = hid_parse(hdev); 364 ret = hid_parse(hdev);
363 if (ret) { 365 if (ret) {
364 dev_err(&hdev->dev, "parse failed\n"); 366 hid_err(hdev, "parse failed\n");
365 goto err_free; 367 goto err_free;
366 } 368 }
367 369
@@ -372,7 +374,7 @@ static int apple_probe(struct hid_device *hdev,
372 374
373 ret = hid_hw_start(hdev, connect_mask); 375 ret = hid_hw_start(hdev, connect_mask);
374 if (ret) { 376 if (ret) {
375 dev_err(&hdev->dev, "hw start failed\n"); 377 hid_err(hdev, "hw start failed\n");
376 goto err_free; 378 goto err_free;
377 } 379 }
378 380
@@ -512,7 +514,7 @@ static int __init apple_init(void)
512 514
513 ret = hid_register_driver(&apple_driver); 515 ret = hid_register_driver(&apple_driver);
514 if (ret) 516 if (ret)
515 printk(KERN_ERR "can't register apple driver\n"); 517 pr_err("can't register apple driver\n");
516 518
517 return ret; 519 return ret;
518} 520}