Hi,

On 07/11/2014 02:56 PM, Antonio Ospite wrote:
> Signed-off-by: Antonio Ospite <a...@ao2.it>

Thanks, I've added this to my tree and send a pull-req for it
to Mauro.

Regards,

Hans

> ---
>  drivers/media/usb/gspca/stv06xx/stv06xx.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/media/usb/gspca/stv06xx/stv06xx.c 
> b/drivers/media/usb/gspca/stv06xx/stv06xx.c
> index 49d209b..6ac93d8 100644
> --- a/drivers/media/usb/gspca/stv06xx/stv06xx.c
> +++ b/drivers/media/usb/gspca/stv06xx/stv06xx.c
> @@ -505,13 +505,13 @@ static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
>  {
>       int ret = -EINVAL;
>  
> -     if (len == 1 && data[0] == 0x80) {
> +     if (len == 1 && (data[0] == 0x80 || data[0] == 0x10)) {
>               input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
>               input_sync(gspca_dev->input_dev);
>               ret = 0;
>       }
>  
> -     if (len == 1 && data[0] == 0x88) {
> +     if (len == 1 && (data[0] == 0x88 || data[0] == 0x11)) {
>               input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
>               input_sync(gspca_dev->input_dev);
>               ret = 0;
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to