Title: [6978] trunk/drivers/input/keyboard/adp5588_keys.c: Cleanup - no functional changes
Revision
6978
Author
hennerich
Date
2009-07-13 04:56:44 -0500 (Mon, 13 Jul 2009)

Log Message

Cleanup - no functional changes

Modified Paths


Diff

Modified: trunk/drivers/input/keyboard/adp5588_keys.c (6977 => 6978)


--- trunk/drivers/input/keyboard/adp5588_keys.c	2009-07-13 09:51:13 UTC (rev 6977)
+++ trunk/drivers/input/keyboard/adp5588_keys.c	2009-07-13 09:56:44 UTC (rev 6978)
@@ -173,7 +173,8 @@
 	 * use keventd context to read the event fifo registers
 	 * Schedule readout at least 25ms after notification
 	 */
-	schedule_delayed_work(&kpad->work, (unsigned long) msecs_to_jiffies(30));
+	schedule_delayed_work(&kpad->work,
+				(unsigned long) msecs_to_jiffies(30));
 
 	return IRQ_HANDLED;
 }
@@ -260,7 +261,6 @@
 	kpad->client = client;
 
 	ret = adp5588_read(client, DEV_ID);
-
 	if (ret < 0) {
 		input_free_device(input);
 		goto out1;
@@ -272,7 +272,7 @@
 	kpad->input = input;
 
 	input->name = client->name;
-	input->phys = "adp5588-keys/inputX";
+	input->phys = "adp5588-keys/input0";
 	input->dev.parent = &client->dev;
 
 	input_set_drvdata(input, kpad);
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to