Commit a7ce87e1 authored by Tülin İzer's avatar Tülin İzer Committed by Greg Kroah-Hartman

Staging: silicom: Fixed warning 'please, no space before tabs'.

This patch fixes warning 'please, no space before tabs' found by checkpatch
in driver silicom.
Signed-off-by: default avatarTülin İzer <tulinizer@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a0069a41
...@@ -43,12 +43,12 @@ MODULE_DESCRIPTION(BP_MOD_DESCR); ...@@ -43,12 +43,12 @@ MODULE_DESCRIPTION(BP_MOD_DESCR);
MODULE_VERSION(BP_MOD_VER); MODULE_VERSION(BP_MOD_VER);
spinlock_t bpvm_lock; spinlock_t bpvm_lock;
#define lock_bpctl() \ #define lock_bpctl() \
if (down_interruptible(&bpctl_sema)) { \ if (down_interruptible(&bpctl_sema)) { \
return -ERESTARTSYS; \ return -ERESTARTSYS; \
} \ } \
#define unlock_bpctl() \ #define unlock_bpctl() \
up(&bpctl_sema); up(&bpctl_sema);
/* Media Types */ /* Media Types */
...@@ -5438,9 +5438,9 @@ static long device_ioctl(struct file *file, /* see include/linux/fs.h */ ...@@ -5438,9 +5438,9 @@ static long device_ioctl(struct file *file, /* see include/linux/fs.h */
return -1; return -1;
} }
/* preempt_disable(); /* preempt_disable();
rcu_read_lock(); rcu_read_lock();
spin_lock_irqsave(&bpvm_lock, flags); spin_lock_irqsave(&bpvm_lock, flags);
*/ */
if ((bpctl_cmd.in_param[5]) || if ((bpctl_cmd.in_param[5]) ||
(bpctl_cmd.in_param[6]) || (bpctl_cmd.in_param[7])) (bpctl_cmd.in_param[6]) || (bpctl_cmd.in_param[7]))
......
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