return_serial() trivial cleanup:
1) CodingStyle fix;
2) The `return' is not necessary, we are at the end of a function
which don't return nothing (void).
(against 2.6.9-rc2-mm4).
Signed-off-by: Luiz Capitulino <[email protected]>
drivers/usb/serial/usb-serial.c | 4 +---
1 files changed, 1 insertion(+), 3 deletions(-)
diff -X /home/lcapitulino/kernels/2.6/dontdiff -Nparu a/drivers/usb/serial/usb-serial.c a~/drivers/usb/serial/usb-serial.c
--- a/drivers/usb/serial/usb-serial.c 2004-09-26 13:30:50.000000000 -0300
+++ a~/drivers/usb/serial/usb-serial.c 2004-09-26 13:31:27.000000000 -0300
@@ -405,7 +405,7 @@ static struct usb_serial *get_free_seria
return NULL;
}
-static void return_serial (struct usb_serial *serial)
+static void return_serial(struct usb_serial *serial)
{
int i;
@@ -417,8 +417,6 @@ static void return_serial (struct usb_se
for (i = 0; i < serial->num_ports; ++i) {
serial_table[serial->minor + i] = NULL;
}
-
- return;
}
static void destroy_serial(struct kref *kref)