diff options
Diffstat (limited to 'drivers/media/video/usbvideo/quickcam_messenger.c')
-rw-r--r-- | drivers/media/video/usbvideo/quickcam_messenger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/usbvideo/quickcam_messenger.c b/drivers/media/video/usbvideo/quickcam_messenger.c index fd112f0b9d35..803d3e4e29a2 100644 --- a/drivers/media/video/usbvideo/quickcam_messenger.c +++ b/drivers/media/video/usbvideo/quickcam_messenger.c | |||
@@ -103,7 +103,7 @@ static void qcm_register_input(struct qcm *cam, struct usb_device *dev) | |||
103 | input_dev->dev.parent = &dev->dev; | 103 | input_dev->dev.parent = &dev->dev; |
104 | 104 | ||
105 | input_dev->evbit[0] = BIT_MASK(EV_KEY); | 105 | input_dev->evbit[0] = BIT_MASK(EV_KEY); |
106 | input_dev->keybit[BIT_WORD(BTN_0)] = BIT_MASK(BTN_0); | 106 | input_dev->keybit[BIT_WORD(KEY_CAMERA)] = BIT_MASK(KEY_CAMERA); |
107 | 107 | ||
108 | error = input_register_device(cam->input); | 108 | error = input_register_device(cam->input); |
109 | if (error) { | 109 | if (error) { |
@@ -126,7 +126,7 @@ static void qcm_unregister_input(struct qcm *cam) | |||
126 | static void qcm_report_buttonstat(struct qcm *cam) | 126 | static void qcm_report_buttonstat(struct qcm *cam) |
127 | { | 127 | { |
128 | if (cam->input) { | 128 | if (cam->input) { |
129 | input_report_key(cam->input, BTN_0, cam->button_sts); | 129 | input_report_key(cam->input, KEY_CAMERA, cam->button_sts); |
130 | input_sync(cam->input); | 130 | input_sync(cam->input); |
131 | } | 131 | } |
132 | } | 132 | } |