staging: unisys: visorinput: Fix spacing after open paranthesis
authorDavid Kershner <david.kershner@unisys.com>
Wed, 31 Jan 2018 16:41:16 +0000 (11:41 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 Feb 2018 14:42:22 +0000 (15:42 +0100)
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.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorinput/visorinput.c

index 634b16b..aae3fe5 100644 (file)
@@ -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 @@ err_kfree_devdata:
 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;
 }