Commit ba624ce4 authored by Jean-Francois Moine's avatar Jean-Francois Moine Committed by Mauro Carvalho Chehab

V4L/DVB (12953): gspca - vc032x: Bad GPIO of the Samsung Q1 on start/stop streaming.

Signed-off-by: default avatarJean-Francois Moine <moinejf@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 285eb1a4
...@@ -2946,7 +2946,8 @@ static int sd_start(struct gspca_dev *gspca_dev) ...@@ -2946,7 +2946,8 @@ static int sd_start(struct gspca_dev *gspca_dev)
reg_w(gspca_dev->dev, 0x89, 0x058c, 0x0000); reg_w(gspca_dev->dev, 0x89, 0x058c, 0x0000);
break; break;
default: default:
reg_w(gspca_dev->dev, 0x89, 0xffff, 0xfdff); if (!(sd->flags & FL_SAMSUNG))
reg_w(gspca_dev->dev, 0x89, 0xffff, 0xfdff);
break; break;
} }
msleep(100); msleep(100);
...@@ -2964,7 +2965,7 @@ static void sd_stopN(struct gspca_dev *gspca_dev) ...@@ -2964,7 +2965,7 @@ static void sd_stopN(struct gspca_dev *gspca_dev)
if (sd->sensor == SENSOR_MI1310_SOC) if (sd->sensor == SENSOR_MI1310_SOC)
reg_w(dev, 0x89, 0x058c, 0x00ff); reg_w(dev, 0x89, 0x058c, 0x00ff);
else else if (!(sd->flags & FL_SAMSUNG))
reg_w(dev, 0x89, 0xffff, 0xffff); reg_w(dev, 0x89, 0xffff, 0xffff);
reg_w(dev, 0xa0, 0x01, 0xb301); reg_w(dev, 0xa0, 0x01, 0xb301);
reg_w(dev, 0xa0, 0x09, 0xb003); reg_w(dev, 0xa0, 0x09, 0xb003);
...@@ -2981,7 +2982,7 @@ static void sd_stop0(struct gspca_dev *gspca_dev) ...@@ -2981,7 +2982,7 @@ static void sd_stop0(struct gspca_dev *gspca_dev)
/*fixme: is this useful?*/ /*fixme: is this useful?*/
if (sd->sensor == SENSOR_MI1310_SOC) if (sd->sensor == SENSOR_MI1310_SOC)
reg_w(dev, 0x89, 0x058c, 0x00ff); reg_w(dev, 0x89, 0x058c, 0x00ff);
else else if (!(sd->flags & FL_SAMSUNG))
reg_w(dev, 0x89, 0xffff, 0xffff); reg_w(dev, 0x89, 0xffff, 0xffff);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment