]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
USB: serial: kl5kusb105: clean up struct definition
authorJohan Hovold <johan@kernel.org>
Tue, 10 Jan 2017 11:05:40 +0000 (12:05 +0100)
committerJohan Hovold <johan@kernel.org>
Mon, 16 Jan 2017 12:00:15 +0000 (13:00 +0100)
Drop redundant packed attribute from the port-settings struct which is
already 1-byte aligned. Also replace __u8 with u8 for the field types as
this is not a structure we share with user space.

Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
drivers/usb/serial/kl5kusb105.c

index 7550cf6c5f7c111479a824bed9bd199c02a2b500..28cc8ec1c92c83d0f064945ba29c8b984618356f 100644 (file)
@@ -103,12 +103,12 @@ static struct usb_serial_driver * const serial_drivers[] = {
 };
 
 struct klsi_105_port_settings {
-       __u8    pktlen;         /* always 5, it seems */
-       __u8    baudrate;
-       __u8    databits;
-       __u8    unknown1;
-       __u8    unknown2;
-} __attribute__ ((packed));
+       u8      pktlen;         /* always 5, it seems */
+       u8      baudrate;
+       u8      databits;
+       u8      unknown1;
+       u8      unknown2;
+};
 
 struct klsi_105_private {
        struct klsi_105_port_settings   cfg;