[media] stk-webcam: Don't flip the image by default
[firefly-linux-kernel-4.4.55.git] / drivers / media / video / stk-webcam.c
index d427f8436c70468721140d655eb00196d9ccf80b..86a0fc56c330f93076dfbd6c0984dd4d6e3b1023 100644 (file)
 #include "stk-webcam.h"
 
 
-static bool hflip = 1;
+static bool hflip;
 module_param(hflip, bool, 0444);
-MODULE_PARM_DESC(hflip, "Horizontal image flip (mirror). Defaults to 1");
+MODULE_PARM_DESC(hflip, "Horizontal image flip (mirror). Defaults to 0");
 
-static bool vflip = 1;
+static bool vflip;
 module_param(vflip, bool, 0444);
-MODULE_PARM_DESC(vflip, "Vertical image flip. Defaults to 1");
+MODULE_PARM_DESC(vflip, "Vertical image flip. Defaults to 0");
 
 static int debug;
 module_param(debug, int, 0444);