Checkpatch was giving errors about an open parenthesis being the last thing
on a line. This patch cleans up some names and removes the checkpatch
warnings.

Signed-off-by: David Kershner <david.kersh...@unisys.com>
Reviewed-by: Tim Sell <timothy.s...@unisys.com>
---
 drivers/staging/unisys/visorinput/visorinput.c | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/unisys/visorinput/visorinput.c 
b/drivers/staging/unisys/visorinput/visorinput.c
index 634b16b..aae3fe5 100644
--- a/drivers/staging/unisys/visorinput/visorinput.c
+++ b/drivers/staging/unisys/visorinput/visorinput.c
@@ -91,7 +91,7 @@ struct visor_input_channel_data {
        };
 } __packed;
 
-enum visorinput_device_type {
+enum visorinput_dev_type {
        visorinput_keyboard,
        visorinput_mouse,
 };
@@ -397,16 +397,15 @@ static struct input_dev *setup_client_mouse(void 
*devdata, unsigned int xres,
        return visorinput_dev;
 }
 
-static struct visorinput_devdata *devdata_create(
-                                       struct visor_device *dev,
-                                       enum visorinput_device_type devtype)
+static struct visorinput_devdata *devdata_create(struct visor_device *dev,
+                                                enum visorinput_dev_type dtype)
 {
        struct visorinput_devdata *devdata = NULL;
        unsigned int extra_bytes = 0;
        unsigned int size, xres, yres, err;
        struct visor_input_channel_data data;
 
-       if (devtype == visorinput_keyboard)
+       if (dtype == visorinput_keyboard)
                /* allocate room for devdata->keycode_table, filled in below */
                extra_bytes = KEYCODE_TABLE_BYTES * 2;
        devdata = kzalloc(sizeof(*devdata) + extra_bytes, GFP_KERNEL);
@@ -429,7 +428,7 @@ static struct visorinput_devdata *devdata_create(
         * so we need to create whatever input nodes are necessary to
         * deliver our inputs to the guest OS.
         */
-       switch (devtype) {
+       switch (dtype) {
        case visorinput_keyboard:
                devdata->keycode_table_bytes = extra_bytes;
                memcpy(devdata->keycode_table, visorkbd_keycode,
@@ -497,17 +496,17 @@ static struct visorinput_devdata *devdata_create(
 static int visorinput_probe(struct visor_device *dev)
 {
        const guid_t *guid;
-       enum visorinput_device_type devtype;
+       enum visorinput_dev_type dtype;
 
        guid = visorchannel_get_guid(dev->visorchannel);
        if (guid_equal(guid, &visor_mouse_channel_guid))
-               devtype = visorinput_mouse;
+               dtype = visorinput_mouse;
        else if (guid_equal(guid, &visor_keyboard_channel_guid))
-               devtype = visorinput_keyboard;
+               dtype = visorinput_keyboard;
        else
                return -ENODEV;
        visorbus_disable_channel_interrupts(dev);
-       if (!devdata_create(dev, devtype))
+       if (!devdata_create(dev, dtype))
                return -ENOMEM;
        return 0;
 }
-- 
git-series 0.9.1
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to