aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/i2c/s5c73m3
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/i2c/s5c73m3')
-rw-r--r--drivers/media/i2c/s5c73m3/s5c73m3-core.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/i2c/s5c73m3/s5c73m3-core.c b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
index 600909ddb150..b063b4ddf767 100644
--- a/drivers/media/i2c/s5c73m3/s5c73m3-core.c
+++ b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
@@ -39,10 +39,10 @@
39int s5c73m3_dbg; 39int s5c73m3_dbg;
40module_param_named(debug, s5c73m3_dbg, int, 0644); 40module_param_named(debug, s5c73m3_dbg, int, 0644);
41 41
42int boot_from_rom = 1; 42static int boot_from_rom = 1;
43module_param(boot_from_rom, int, 0644); 43module_param(boot_from_rom, int, 0644);
44 44
45int update_fw; 45static int update_fw;
46module_param(update_fw, int, 0644); 46module_param(update_fw, int, 0644);
47 47
48#define S5C73M3_EMBEDDED_DATA_MAXLEN SZ_4K 48#define S5C73M3_EMBEDDED_DATA_MAXLEN SZ_4K
@@ -295,7 +295,8 @@ int s5c73m3_isp_command(struct s5c73m3 *state, u16 command, u16 data)
295 return s5c73m3_write(state, REG_STATUS, 0x0001); 295 return s5c73m3_write(state, REG_STATUS, 0x0001);
296} 296}
297 297
298int s5c73m3_isp_comm_result(struct s5c73m3 *state, u16 command, u16 *data) 298static int s5c73m3_isp_comm_result(struct s5c73m3 *state, u16 command,
299 u16 *data)
299{ 300{
300 return s5c73m3_read(state, COMM_RESULT_OFFSET + command, data); 301 return s5c73m3_read(state, COMM_RESULT_OFFSET + command, data);
301} 302}