V4L: s5c73m3: Use internal firmware by default 82/35482/1
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Mon, 16 Feb 2015 10:45:39 +0000 (11:45 +0100)
committerSylwester Nawrocki <s.nawrocki@samsung.com>
Mon, 16 Feb 2015 10:45:39 +0000 (11:45 +0100)
Set the boot_from_rom module parameter by default to 1 so the internal
sensors's firmware from ROM is used. The external firmware will be
loaded only if the module parameter is explicitly set to 0 by the user.
This prevents camera stream on failures for some S5C73M3 revisions.

Change-Id: I8c8c936c982df0db6f570e33b55596cce11b0b16
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
drivers/media/i2c/s5c73m3/s5c73m3-core.c

index 0314407..aa5e32c 100644 (file)
@@ -42,7 +42,7 @@
 int s5c73m3_dbg;
 module_param_named(debug, s5c73m3_dbg, int, 0644);
 
-static int boot_from_rom = 0;
+static int boot_from_rom = 1;
 module_param(boot_from_rom, int, 0644);
 
 static int update_fw;