Fix some really minor coding-style issues.

Signed-off-by: Johan Hovold <[email protected]>
---
 drivers/usb/serial/f81232.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/serial/f81232.c b/drivers/usb/serial/f81232.c
index 68016e7a86f7..972f5a5fe577 100644
--- a/drivers/usb/serial/f81232.c
+++ b/drivers/usb/serial/f81232.c
@@ -32,14 +32,14 @@ static const struct usb_device_id id_table[] = {
 MODULE_DEVICE_TABLE(usb, id_table);
 
 /* Maximum baudrate for F81232 */
-#define F81232_MAX_BAUDRATE    115200
+#define F81232_MAX_BAUDRATE            115200
 
 /* USB Control EP parameter */
-#define F81232_REGISTER_REQUEST        0xa0
+#define F81232_REGISTER_REQUEST                0xa0
 #define F81232_GET_REGISTER            0xc0
 #define F81232_SET_REGISTER            0x40
 
-#define SERIAL_BASE_ADDRESS                    0x0120
+#define SERIAL_BASE_ADDRESS            0x0120
 #define RECEIVE_BUFFER_REGISTER                (0x00 + SERIAL_BASE_ADDRESS)
 #define INTERRUPT_ENABLE_REGISTER      (0x01 + SERIAL_BASE_ADDRESS)
 #define FIFO_CONTROL_REGISTER          (0x02 + SERIAL_BASE_ADDRESS)
@@ -349,7 +349,8 @@ static void f81232_break_ctl(struct tty_struct *tty, int 
break_state)
 static void f81232_set_baudrate(struct usb_serial_port *port, speed_t baudrate)
 {
        u8 lcr;
-       int divisor, status = 0;
+       int divisor;
+       int status = 0;
 
        divisor = calc_baud_divisor(baudrate);
 
@@ -666,7 +667,7 @@ static struct usb_serial_driver f81232_device = {
        .bulk_out_size =        256,
        .open =                 f81232_open,
        .close =                f81232_close,
-       .dtr_rts =              f81232_dtr_rts,
+       .dtr_rts =              f81232_dtr_rts,
        .carrier_raised =       f81232_carrier_raised,
        .ioctl =                f81232_ioctl,
        .break_ctl =            f81232_break_ctl,
-- 
2.0.5

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to