Skip to content

Commit

Permalink
drivers: Remove BKL from cs5535_gpio
Browse files Browse the repository at this point in the history
The big BKL pushdown added cycle_kernel_lock(). There is nothing to
wait for in this driver. Remove it.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <20091010153349.277882707@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Oct 14, 2009
1 parent 40b798e commit a7e63bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/char/cs5535_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <linux/cdev.h>
#include <linux/ioport.h>
#include <linux/pci.h>
#include <linux/smp_lock.h>

#include <asm/uaccess.h>
#include <asm/io.h>

Expand Down Expand Up @@ -158,7 +158,6 @@ static int cs5535_gpio_open(struct inode *inode, struct file *file)
{
u32 m = iminor(inode);

cycle_kernel_lock();
/* the mask says which pins are usable by this driver */
if ((mask & (1 << m)) == 0)
return -EINVAL;
Expand Down

0 comments on commit a7e63bb

Please sign in to comment.