]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
USB: legousbtower: clean up pointer declarations in driver data
authorJohan Hovold <johan@kernel.org>
Tue, 5 Nov 2019 08:41:47 +0000 (09:41 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Nov 2019 10:17:52 +0000 (11:17 +0100)
Clean up the pointer declarations in the driver data, whose style wasn't
even consistent with the rest of the driver.

Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20191105084152.16322-10-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/legousbtower.c

index f85b6ed2fb8bd83c8347cf518ae44aac899b5685..c8ed8792b93129fa3de8e6caefd1ad1a7620dc86 100644 (file)
@@ -186,13 +186,13 @@ MODULE_DEVICE_TABLE (usb, tower_table);
 /* Structure to hold all of our device specific stuff */
 struct lego_usb_tower {
        struct mutex            lock;           /* locks this structure */
-       struct usb_device*      udev;           /* save off the usb device pointer */
+       struct usb_device       *udev;          /* save off the usb device pointer */
        unsigned char           minor;          /* the starting minor number for this device */
 
        int                     open_count;     /* number of times this port has been opened */
        unsigned long           disconnected:1;
 
-       char*                   read_buffer;
+       char                    *read_buffer;
        size_t                  read_buffer_length; /* this much came in */
        size_t                  read_packet_length; /* this much will be returned on read */
        spinlock_t              read_buffer_lock;
@@ -202,15 +202,15 @@ struct lego_usb_tower {
        wait_queue_head_t       read_wait;
        wait_queue_head_t       write_wait;
 
-       char*                   interrupt_in_buffer;
-       struct usb_endpoint_descriptorinterrupt_in_endpoint;
-       struct urb*             interrupt_in_urb;
+       char                    *interrupt_in_buffer;
+       struct usb_endpoint_descriptor *interrupt_in_endpoint;
+       struct urb              *interrupt_in_urb;
        int                     interrupt_in_interval;
        int                     interrupt_in_done;
 
-       char*                   interrupt_out_buffer;
-       struct usb_endpoint_descriptorinterrupt_out_endpoint;
-       struct urb*             interrupt_out_urb;
+       char                    *interrupt_out_buffer;
+       struct usb_endpoint_descriptor *interrupt_out_endpoint;
+       struct urb              *interrupt_out_urb;
        int                     interrupt_out_interval;
        int                     interrupt_out_busy;