mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
sony-laptop: BKL pushdown
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
parent
9edca64b72
commit
0410e689b1
@ -46,6 +46,7 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/moduleparam.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/backlight.h>
|
||||
#include <linux/platform_device.h>
|
||||
@ -1927,8 +1928,10 @@ static int sonypi_misc_release(struct inode *inode, struct file *file)
|
||||
static int sonypi_misc_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
/* Flush input queue on first open */
|
||||
lock_kernel();
|
||||
if (atomic_inc_return(&sonypi_compat.open_count) == 1)
|
||||
kfifo_reset(sonypi_compat.fifo);
|
||||
unlock_kernel();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user