Commit 70fe742c authored by Florian Schmaus's avatar Florian Schmaus Committed by Greg Kroah-Hartman

staging: comedi_fops.c whitespace fixes

Changed whitespaces in comedi/*.c to tabs where necessary. All .c
files within comedi now have no obvious style problems as reported by
checkpatch.pl
Signed-off-by: default avatarFlorian Schmaus <fschmaus@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent d5396716
...@@ -1479,10 +1479,10 @@ static int comedi_mmap(struct file *file, struct vm_area_struct *vma) ...@@ -1479,10 +1479,10 @@ static int comedi_mmap(struct file *file, struct vm_area_struct *vma)
dev_file_info = comedi_get_device_file_info(minor); dev_file_info = comedi_get_device_file_info(minor);
if (dev_file_info == NULL) if (dev_file_info == NULL)
return -ENODEV; return -ENODEV;
dev = dev_file_info->device; dev = dev_file_info->device;
if (dev == NULL) if (dev == NULL)
return -ENODEV; return -ENODEV;
mutex_lock(&dev->mutex); mutex_lock(&dev->mutex);
if (!dev->attached) { if (!dev->attached) {
...@@ -1556,10 +1556,10 @@ static unsigned int comedi_poll(struct file *file, poll_table * wait) ...@@ -1556,10 +1556,10 @@ static unsigned int comedi_poll(struct file *file, poll_table * wait)
dev_file_info = comedi_get_device_file_info(minor); dev_file_info = comedi_get_device_file_info(minor);
if (dev_file_info == NULL) if (dev_file_info == NULL)
return -ENODEV; return -ENODEV;
dev = dev_file_info->device; dev = dev_file_info->device;
if (dev == NULL) if (dev == NULL)
return -ENODEV; return -ENODEV;
mutex_lock(&dev->mutex); mutex_lock(&dev->mutex);
if (!dev->attached) { if (!dev->attached) {
...@@ -1610,10 +1610,10 @@ static ssize_t comedi_write(struct file *file, const char __user *buf, ...@@ -1610,10 +1610,10 @@ static ssize_t comedi_write(struct file *file, const char __user *buf,
dev_file_info = comedi_get_device_file_info(minor); dev_file_info = comedi_get_device_file_info(minor);
if (dev_file_info == NULL) if (dev_file_info == NULL)
return -ENODEV; return -ENODEV;
dev = dev_file_info->device; dev = dev_file_info->device;
if (dev == NULL) if (dev == NULL)
return -ENODEV; return -ENODEV;
if (!dev->attached) { if (!dev->attached) {
DPRINTK("no driver configured on comedi%i\n", dev->minor); DPRINTK("no driver configured on comedi%i\n", dev->minor);
...@@ -1721,10 +1721,10 @@ static ssize_t comedi_read(struct file *file, char __user *buf, size_t nbytes, ...@@ -1721,10 +1721,10 @@ static ssize_t comedi_read(struct file *file, char __user *buf, size_t nbytes,
dev_file_info = comedi_get_device_file_info(minor); dev_file_info = comedi_get_device_file_info(minor);
if (dev_file_info == NULL) if (dev_file_info == NULL)
return -ENODEV; return -ENODEV;
dev = dev_file_info->device; dev = dev_file_info->device;
if (dev == NULL) if (dev == NULL)
return -ENODEV; return -ENODEV;
if (!dev->attached) { if (!dev->attached) {
DPRINTK("no driver configured on comedi%i\n", dev->minor); DPRINTK("no driver configured on comedi%i\n", dev->minor);
...@@ -1931,10 +1931,10 @@ static int comedi_close(struct inode *inode, struct file *file) ...@@ -1931,10 +1931,10 @@ static int comedi_close(struct inode *inode, struct file *file)
dev_file_info = comedi_get_device_file_info(minor); dev_file_info = comedi_get_device_file_info(minor);
if (dev_file_info == NULL) if (dev_file_info == NULL)
return -ENODEV; return -ENODEV;
dev = dev_file_info->device; dev = dev_file_info->device;
if (dev == NULL) if (dev == NULL)
return -ENODEV; return -ENODEV;
mutex_lock(&dev->mutex); mutex_lock(&dev->mutex);
...@@ -1973,10 +1973,10 @@ static int comedi_fasync(int fd, struct file *file, int on) ...@@ -1973,10 +1973,10 @@ static int comedi_fasync(int fd, struct file *file, int on)
dev_file_info = comedi_get_device_file_info(minor); dev_file_info = comedi_get_device_file_info(minor);
if (dev_file_info == NULL) if (dev_file_info == NULL)
return -ENODEV; return -ENODEV;
dev = dev_file_info->device; dev = dev_file_info->device;
if (dev == NULL) if (dev == NULL)
return -ENODEV; return -ENODEV;
return fasync_helper(fd, file, on, &dev->async_queue); return fasync_helper(fd, file, on, &dev->async_queue);
} }
......
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