diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-10-10 09:56:00 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-10-14 11:36:52 -0400 |
commit | 71d69bc2c0202f438669073d849999d2f6b6ca31 (patch) | |
tree | 802e5f790e694d5276a49e212283ef442c71e6c1 /drivers/char/pc8736x_gpio.c | |
parent | eb29b758a8b0b2dbffd8dc898490237d3ee783e4 (diff) |
drivers: Remove BKL from pc8736x_gpio
cycle_kernel_lock() was added during the big BKL pushdown. It should
ensure the serializiation against driver init code. In this case there
is nothing to serialize. Remove it.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <20091010153350.127093710@linutronix.de>
Acked-by: Jim Cromie <jim.cromie@gmail.com>
Diffstat (limited to 'drivers/char/pc8736x_gpio.c')
-rw-r--r-- | drivers/char/pc8736x_gpio.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/char/pc8736x_gpio.c b/drivers/char/pc8736x_gpio.c index 3f7da8cf3a80..8ecbcc174c15 100644 --- a/drivers/char/pc8736x_gpio.c +++ b/drivers/char/pc8736x_gpio.c | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/mutex.h> | 20 | #include <linux/mutex.h> |
21 | #include <linux/nsc_gpio.h> | 21 | #include <linux/nsc_gpio.h> |
22 | #include <linux/platform_device.h> | 22 | #include <linux/platform_device.h> |
23 | #include <linux/smp_lock.h> | ||
24 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
25 | 24 | ||
26 | #define DEVNAME "pc8736x_gpio" | 25 | #define DEVNAME "pc8736x_gpio" |
@@ -223,7 +222,6 @@ static int pc8736x_gpio_open(struct inode *inode, struct file *file) | |||
223 | unsigned m = iminor(inode); | 222 | unsigned m = iminor(inode); |
224 | file->private_data = &pc8736x_gpio_ops; | 223 | file->private_data = &pc8736x_gpio_ops; |
225 | 224 | ||
226 | cycle_kernel_lock(); | ||
227 | dev_dbg(&pdev->dev, "open %d\n", m); | 225 | dev_dbg(&pdev->dev, "open %d\n", m); |
228 | 226 | ||
229 | if (m >= PC8736X_GPIO_CT) | 227 | if (m >= PC8736X_GPIO_CT) |