Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79a9098a authored by Jean-Francois Moine's avatar Jean-Francois Moine Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (9118): gspca: Set the vertical flip at streamon time in sonixj.

parent a482f327
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1350,6 +1350,9 @@ static int sd_start(struct gspca_dev *gspca_dev)
		setbrightness(gspca_dev);
		setcontrast(gspca_dev);
		break;
	case SENSOR_OV7630:
		setvflip(sd);
		/* fall thru */
	default:			/* OV76xx */
		setbrightcont(gspca_dev);
		break;
@@ -1582,6 +1585,7 @@ static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val)
	struct sd *sd = (struct sd *) gspca_dev;

	sd->vflip = val;
	if (gspca_dev->streaming)
		setvflip(sd);
	return 0;
}