diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2008-05-20 19:15:32 +0200 | 
|---|---|---|
| committer | Jonathan Corbet <corbet@lwn.net> | 2008-06-20 14:05:54 -0600 | 
| commit | b82829943c470e59cfd3ee84d8ed6ae5d5e1a55b (patch) | |
| tree | e1961a86ea7ce622a7d1e412f27b9b0de848b1e5 | |
| parent | a076230134f3083a58cef99e48b127818ef01e7a (diff) | |
| download | olio-linux-3.10-b82829943c470e59cfd3ee84d8ed6ae5d5e1a55b.tar.xz olio-linux-3.10-b82829943c470e59cfd3ee84d8ed6ae5d5e1a55b.zip  | |
ans-lcd: BKL pushdown
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
| -rw-r--r-- | drivers/macintosh/ans-lcd.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/macintosh/ans-lcd.c b/drivers/macintosh/ans-lcd.c index 73c50bc0209..6a822189325 100644 --- a/drivers/macintosh/ans-lcd.c +++ b/drivers/macintosh/ans-lcd.c @@ -3,6 +3,7 @@   */  #include <linux/types.h> +#include <linux/smp_lock.h>  #include <linux/errno.h>  #include <linux/kernel.h>  #include <linux/miscdevice.h> @@ -119,6 +120,7 @@ anslcd_ioctl( struct inode * inode, struct file * file,  static int  anslcd_open( struct inode * inode, struct file * file )  { +	cycle_kernel_lock();  	return 0;  }  |