Commit ebcf7746 authored by Ruan Jinjie's avatar Ruan Jinjie Committed by Greg Kroah-Hartman

USB: cytherm: Correct the code style issue of redundant spaces

Ther are many redundant spaces, which is not consistent with
the kernel code style, so remove it.
Signed-off-by: default avatarRuan Jinjie <ruanjinjie@huawei.com>
Link: https://lore.kernel.org/r/20230804091713.41503-1-ruanjinjie@huawei.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4f4bda58
......@@ -307,17 +307,17 @@ static int cytherm_probe(struct usb_interface *interface,
struct usb_cytherm *dev = NULL;
int retval = -ENOMEM;
dev = kzalloc (sizeof(struct usb_cytherm), GFP_KERNEL);
dev = kzalloc(sizeof(struct usb_cytherm), GFP_KERNEL);
if (!dev)
goto error_mem;
dev->udev = usb_get_dev(udev);
usb_set_intfdata (interface, dev);
usb_set_intfdata(interface, dev);
dev->brightness = 0xFF;
dev_info (&interface->dev,
dev_info(&interface->dev,
"Cypress thermometer device now attached\n");
return 0;
......@@ -329,10 +329,10 @@ static void cytherm_disconnect(struct usb_interface *interface)
{
struct usb_cytherm *dev;
dev = usb_get_intfdata (interface);
dev = usb_get_intfdata(interface);
/* first remove the files, then NULL the pointer */
usb_set_intfdata (interface, NULL);
usb_set_intfdata(interface, NULL);
usb_put_dev(dev->udev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment