diff options
author | Mathieu OTHACEHE <m.othacehe@gmail.com> | 2016-05-12 10:48:34 +0200 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2016-07-15 12:10:49 +0200 |
commit | 735ad1e261b8833cd2cc8c36d8955fcef1e62a62 (patch) | |
tree | 12f0c054487dc8203668a0d05ffcfecac7dfe642 /drivers/usb/serial | |
parent | 8bf344d7ffe919f1f9fe7018dae80470fc4fa0b7 (diff) | |
download | op-kernel-dev-735ad1e261b8833cd2cc8c36d8955fcef1e62a62.zip op-kernel-dev-735ad1e261b8833cd2cc8c36d8955fcef1e62a62.tar.gz |
USB: serial: ti_usb_3410_5052: use __packed
__packed is preferred over __attribute__((packed)) for portability.
Signed-off-by: Mathieu OTHACEHE <m.othacehe@gmail.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/ti_usb_3410_5052.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/usb/serial/ti_usb_3410_5052.h b/drivers/usb/serial/ti_usb_3410_5052.h index bbfd3a1..c39b13e 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.h +++ b/drivers/usb/serial/ti_usb_3410_5052.h @@ -174,7 +174,7 @@ struct ti_uart_config { char cXon; char cXoff; __u8 bUartMode; -} __attribute__((packed)); +} __packed; /* Get port status */ struct ti_port_status { @@ -183,7 +183,7 @@ struct ti_port_status { __u8 bErrorCode; __u8 bMSR; __u8 bLSR; -} __attribute__((packed)); +} __packed; /* Purge modes */ #define TI_PURGE_OUTPUT 0x00 @@ -211,7 +211,7 @@ struct ti_write_data_bytes { __be16 wBaseAddrHi; __be16 wBaseAddrLo; __u8 bData[0]; -} __attribute__((packed)); +} __packed; struct ti_read_data_request { __u8 bAddrType; @@ -219,20 +219,20 @@ struct ti_read_data_request { __u8 bDataCounter; __be16 wBaseAddrHi; __be16 wBaseAddrLo; -} __attribute__((packed)); +} __packed; struct ti_read_data_bytes { __u8 bCmdCode; __u8 bModuleId; __u8 bErrorCode; __u8 bData[0]; -} __attribute__((packed)); +} __packed; /* Interrupt struct */ struct ti_interrupt { __u8 bICode; __u8 bIInfo; -} __attribute__((packed)); +} __packed; /* Interrupt codes */ #define TI_GET_PORT_FROM_CODE(c) (((c) >> 4) - 3) @@ -248,7 +248,7 @@ struct ti_interrupt { struct ti_firmware_header { __le16 wLength; __u8 bCheckSum; -} __attribute__((packed)); +} __packed; /* UART addresses */ #define TI_UART1_BASE_ADDR 0xFFA0 /* UART 1 base address */ |