diff options
Diffstat (limited to 'drivers/hid/hid-picolcd_lcd.c')
| -rw-r--r-- | drivers/hid/hid-picolcd_lcd.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/hid/hid-picolcd_lcd.c b/drivers/hid/hid-picolcd_lcd.c index 2d0ddc5ac65..89821c2da6d 100644 --- a/drivers/hid/hid-picolcd_lcd.c +++ b/drivers/hid/hid-picolcd_lcd.c @@ -18,8 +18,6 @@   ***************************************************************************/  #include <linux/hid.h> -#include "usbhid/usbhid.h" -#include <linux/usb.h>  #include <linux/fb.h>  #include <linux/lcd.h> @@ -48,7 +46,7 @@ static int picolcd_set_contrast(struct lcd_device *ldev, int contrast)  	spin_lock_irqsave(&data->lock, flags);  	hid_set_field(report->field[0], 0, data->lcd_contrast);  	if (!(data->status & PICOLCD_FAILED)) -		usbhid_submit_report(data->hdev, report, USB_DIR_OUT); +		hid_hw_request(data->hdev, report, HID_REQ_SET_REPORT);  	spin_unlock_irqrestore(&data->lock, flags);  	return 0;  }  |