diff options
Diffstat (limited to 'drivers/char/sonypi.c')
| -rw-r--r-- | drivers/char/sonypi.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c index c084149153d..fc87070f186 100644 --- a/drivers/char/sonypi.c +++ b/drivers/char/sonypi.c @@ -765,7 +765,7 @@ static void sonypi_setbluetoothpower(u8 state)  	sonypi_device.bluetooth_power = state;  } -static void input_keyrelease(void *data) +static void input_keyrelease(struct work_struct *work)  {  	struct sonypi_keypress kp; @@ -1412,7 +1412,7 @@ static int __devinit sonypi_probe(struct platform_device *dev)  			goto err_inpdev_unregister;  		} -		INIT_WORK(&sonypi_device.input_work, input_keyrelease, NULL); +		INIT_WORK(&sonypi_device.input_work, input_keyrelease);  	}  	sonypi_enable(0);  |