Commit 507a3ea7 authored by Zack Parsons's avatar Zack Parsons Committed by Greg Kroah-Hartman

usb: misc: usblcd: fixed coding style issues

Fixed multiple coding style issues
Signed-off-by: default avatarZack Parsons <k3bacon@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ea835863
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <asm/uaccess.h> #include <linux/uaccess.h>
#include <linux/usb.h> #include <linux/usb.h>
#define DRIVER_VERSION "USBLCD Driver Version 1.05" #define DRIVER_VERSION "USBLCD Driver Version 1.05"
...@@ -34,22 +34,29 @@ static const struct usb_device_id id_table[] = { ...@@ -34,22 +34,29 @@ static const struct usb_device_id id_table[] = {
{ .idVendor = 0x10D2, .match_flags = USB_DEVICE_ID_MATCH_VENDOR, }, { .idVendor = 0x10D2, .match_flags = USB_DEVICE_ID_MATCH_VENDOR, },
{ }, { },
}; };
MODULE_DEVICE_TABLE (usb, id_table); MODULE_DEVICE_TABLE(usb, id_table);
static DEFINE_MUTEX(open_disc_mutex); static DEFINE_MUTEX(open_disc_mutex);
struct usb_lcd { struct usb_lcd {
struct usb_device * udev; /* init: probe_lcd */ struct usb_device *udev; /* init: probe_lcd */
struct usb_interface * interface; /* the interface for this device */ struct usb_interface *interface; /* the interface for
unsigned char * bulk_in_buffer; /* the buffer to receive data */ this device */
size_t bulk_in_size; /* the size of the receive buffer */ unsigned char *bulk_in_buffer; /* the buffer to receive
__u8 bulk_in_endpointAddr; /* the address of the bulk in endpoint */ data */
__u8 bulk_out_endpointAddr; /* the address of the bulk out endpoint */ size_t bulk_in_size; /* the size of the
receive buffer */
__u8 bulk_in_endpointAddr; /* the address of the
bulk in endpoint */
__u8 bulk_out_endpointAddr; /* the address of the
bulk out endpoint */
struct kref kref; struct kref kref;
struct semaphore limit_sem; /* to stop writes at full throttle from struct semaphore limit_sem; /* to stop writes at
* using up all RAM */ full throttle from
struct usb_anchor submitted; /* URBs to wait for before suspend */ using up all RAM */
struct usb_anchor submitted; /* URBs to wait for
before suspend */
}; };
#define to_lcd_dev(d) container_of(d, struct usb_lcd, kref) #define to_lcd_dev(d) container_of(d, struct usb_lcd, kref)
...@@ -63,8 +70,8 @@ static void lcd_delete(struct kref *kref) ...@@ -63,8 +70,8 @@ static void lcd_delete(struct kref *kref)
struct usb_lcd *dev = to_lcd_dev(kref); struct usb_lcd *dev = to_lcd_dev(kref);
usb_put_dev(dev->udev); usb_put_dev(dev->udev);
kfree (dev->bulk_in_buffer); kfree(dev->bulk_in_buffer);
kfree (dev); kfree(dev);
} }
...@@ -80,7 +87,7 @@ static int lcd_open(struct inode *inode, struct file *file) ...@@ -80,7 +87,7 @@ static int lcd_open(struct inode *inode, struct file *file)
interface = usb_find_interface(&lcd_driver, subminor); interface = usb_find_interface(&lcd_driver, subminor);
if (!interface) { if (!interface) {
mutex_unlock(&lcd_mutex); mutex_unlock(&lcd_mutex);
err ("USBLCD: %s - error, can't find device for minor %d", err("USBLCD: %s - error, can't find device for minor %d",
__func__, subminor); __func__, subminor);
return -ENODEV; return -ENODEV;
} }
...@@ -126,7 +133,8 @@ static int lcd_release(struct inode *inode, struct file *file) ...@@ -126,7 +133,8 @@ static int lcd_release(struct inode *inode, struct file *file)
return 0; return 0;
} }
static ssize_t lcd_read(struct file *file, char __user * buffer, size_t count, loff_t *ppos) static ssize_t lcd_read(struct file *file, char __user * buffer,
size_t count, loff_t *ppos)
{ {
struct usb_lcd *dev; struct usb_lcd *dev;
int retval = 0; int retval = 0;
...@@ -136,7 +144,8 @@ static ssize_t lcd_read(struct file *file, char __user * buffer, size_t count, l ...@@ -136,7 +144,8 @@ static ssize_t lcd_read(struct file *file, char __user * buffer, size_t count, l
/* do a blocking bulk read to get data from the device */ /* do a blocking bulk read to get data from the device */
retval = usb_bulk_msg(dev->udev, retval = usb_bulk_msg(dev->udev,
usb_rcvbulkpipe(dev->udev, dev->bulk_in_endpointAddr), usb_rcvbulkpipe(dev->udev,
dev->bulk_in_endpointAddr),
dev->bulk_in_buffer, dev->bulk_in_buffer,
min(dev->bulk_in_size, count), min(dev->bulk_in_size, count),
&bytes_read, 10000); &bytes_read, 10000);
...@@ -166,18 +175,18 @@ static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -166,18 +175,18 @@ static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
case IOCTL_GET_HARD_VERSION: case IOCTL_GET_HARD_VERSION:
mutex_lock(&lcd_mutex); mutex_lock(&lcd_mutex);
bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice); bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice);
sprintf(buf,"%1d%1d.%1d%1d", sprintf(buf, "%1d%1d.%1d%1d",
(bcdDevice & 0xF000)>>12, (bcdDevice & 0xF000)>>12,
(bcdDevice & 0xF00)>>8, (bcdDevice & 0xF00)>>8,
(bcdDevice & 0xF0)>>4, (bcdDevice & 0xF0)>>4,
(bcdDevice & 0xF)); (bcdDevice & 0xF));
mutex_unlock(&lcd_mutex); mutex_unlock(&lcd_mutex);
if (copy_to_user((void __user *)arg,buf,strlen(buf))!=0) if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
return -EFAULT; return -EFAULT;
break; break;
case IOCTL_GET_DRV_VERSION: case IOCTL_GET_DRV_VERSION:
sprintf(buf,DRIVER_VERSION); sprintf(buf, DRIVER_VERSION);
if (copy_to_user((void __user *)arg,buf,strlen(buf))!=0) if (copy_to_user((void __user *)arg, buf, strlen(buf)) != 0)
return -EFAULT; return -EFAULT;
break; break;
default: default:
...@@ -210,7 +219,8 @@ static void lcd_write_bulk_callback(struct urb *urb) ...@@ -210,7 +219,8 @@ static void lcd_write_bulk_callback(struct urb *urb)
up(&dev->limit_sem); up(&dev->limit_sem);
} }
static ssize_t lcd_write(struct file *file, const char __user * user_buffer, size_t count, loff_t *ppos) static ssize_t lcd_write(struct file *file, const char __user * user_buffer,
size_t count, loff_t *ppos)
{ {
struct usb_lcd *dev; struct usb_lcd *dev;
int retval = 0, r; int retval = 0, r;
...@@ -234,7 +244,8 @@ static ssize_t lcd_write(struct file *file, const char __user * user_buffer, siz ...@@ -234,7 +244,8 @@ static ssize_t lcd_write(struct file *file, const char __user * user_buffer, siz
goto err_no_buf; goto err_no_buf;
} }
buf = usb_alloc_coherent(dev->udev, count, GFP_KERNEL, &urb->transfer_dma); buf = usb_alloc_coherent(dev->udev, count, GFP_KERNEL,
&urb->transfer_dma);
if (!buf) { if (!buf) {
retval = -ENOMEM; retval = -ENOMEM;
goto error; goto error;
...@@ -247,7 +258,8 @@ static ssize_t lcd_write(struct file *file, const char __user * user_buffer, siz ...@@ -247,7 +258,8 @@ static ssize_t lcd_write(struct file *file, const char __user * user_buffer, siz
/* initialize the urb properly */ /* initialize the urb properly */
usb_fill_bulk_urb(urb, dev->udev, usb_fill_bulk_urb(urb, dev->udev,
usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr), usb_sndbulkpipe(dev->udev,
dev->bulk_out_endpointAddr),
buf, count, lcd_write_bulk_callback, dev); buf, count, lcd_write_bulk_callback, dev);
urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
...@@ -256,11 +268,13 @@ static ssize_t lcd_write(struct file *file, const char __user * user_buffer, siz ...@@ -256,11 +268,13 @@ static ssize_t lcd_write(struct file *file, const char __user * user_buffer, siz
/* send the data out the bulk port */ /* send the data out the bulk port */
retval = usb_submit_urb(urb, GFP_KERNEL); retval = usb_submit_urb(urb, GFP_KERNEL);
if (retval) { if (retval) {
err("USBLCD: %s - failed submitting write urb, error %d", __func__, retval); err("USBLCD: %s - failed submitting write urb, error %d",
__func__, retval);
goto error_unanchor; goto error_unanchor;
} }
/* release our reference to this urb, the USB core will eventually free it entirely */ /* release our reference to this urb,
the USB core will eventually free it entirely */
usb_free_urb(urb); usb_free_urb(urb);
exit: exit:
...@@ -295,7 +309,8 @@ static struct usb_class_driver lcd_class = { ...@@ -295,7 +309,8 @@ static struct usb_class_driver lcd_class = {
.minor_base = USBLCD_MINOR, .minor_base = USBLCD_MINOR,
}; };
static int lcd_probe(struct usb_interface *interface, const struct usb_device_id *id) static int lcd_probe(struct usb_interface *interface,
const struct usb_device_id *id)
{ {
struct usb_lcd *dev = NULL; struct usb_lcd *dev = NULL;
struct usb_host_interface *iface_desc; struct usb_host_interface *iface_desc;
...@@ -369,7 +384,7 @@ static int lcd_probe(struct usb_interface *interface, const struct usb_device_id ...@@ -369,7 +384,7 @@ static int lcd_probe(struct usb_interface *interface, const struct usb_device_id
dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found " dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found "
"at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8, "at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8,
(i & 0xF0)>>4,(i & 0xF), dev->udev->devnum); (i & 0xF0)>>4, (i & 0xF), dev->udev->devnum);
/* let the user know what node this device is now attached to */ /* let the user know what node this device is now attached to */
dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n", dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n",
...@@ -401,7 +416,7 @@ static int lcd_suspend(struct usb_interface *intf, pm_message_t message) ...@@ -401,7 +416,7 @@ static int lcd_suspend(struct usb_interface *intf, pm_message_t message)
return 0; return 0;
} }
static int lcd_resume (struct usb_interface *intf) static int lcd_resume(struct usb_interface *intf)
{ {
return 0; return 0;
} }
......
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