summaryrefslogtreecommitdiff
path: root/drivers/usb/class/bluetty.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/class/bluetty.c')
-rw-r--r--drivers/usb/class/bluetty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/class/bluetty.c b/drivers/usb/class/bluetty.c
index 6bac65e0ade7..524023327c49 100644
--- a/drivers/usb/class/bluetty.c
+++ b/drivers/usb/class/bluetty.c
@@ -309,7 +309,7 @@ static int bluetooth_ctrl_msg (struct usb_bluetooth *bluetooth, int request, int
}
}
if (urb->transfer_buffer_length < len) {
- kfree (urb->transfer_buffer);
+ kfree(urb->transfer_buffer);
urb->transfer_buffer = kmalloc (len, GFP_KERNEL);
if (urb->transfer_buffer == NULL) {
err ("%s - out of memory", __FUNCTION__);
@@ -535,7 +535,7 @@ static int bluetooth_write (struct tty_struct * tty, const unsigned char *buf, i
}
exit:
- kfree (temp_buffer);
+ kfree(temp_buffer);
return retval;
}