diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-08-21 16:53:23 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-08-26 17:51:59 -0400 |
commit | 0448056c7e97f3d8aef6777ffc8ed18569f973e3 (patch) | |
tree | 271da17c2d2b9145adc4e338c67b55adf3a85c8e | |
parent | f17513c9bf5650738d80cd82f716901b3562bf27 (diff) |
[media] dm355_ccdc: declare a function as static
drivers/media/platform/davinci/dm355_ccdc.c:463:5: warning: no previous prototy
pe for 'ccdc_write_dfc_entry' [-Wmissing-prototypes]
int ccdc_write_dfc_entry(int index, struct ccdc_vertical_dft *dfc)
^
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/media/platform/davinci/dm355_ccdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/davinci/dm355_ccdc.c b/drivers/media/platform/davinci/dm355_ccdc.c index 05f8fb7f7b70..3f44deb5b7a7 100644 --- a/drivers/media/platform/davinci/dm355_ccdc.c +++ b/drivers/media/platform/davinci/dm355_ccdc.c | |||
@@ -460,7 +460,7 @@ static void ccdc_config_black_compense(struct ccdc_black_compensation *bcomp) | |||
460 | * ccdc_write_dfc_entry() | 460 | * ccdc_write_dfc_entry() |
461 | * write an entry in the dfc table. | 461 | * write an entry in the dfc table. |
462 | */ | 462 | */ |
463 | int ccdc_write_dfc_entry(int index, struct ccdc_vertical_dft *dfc) | 463 | static int ccdc_write_dfc_entry(int index, struct ccdc_vertical_dft *dfc) |
464 | { | 464 | { |
465 | /* TODO This is to be re-visited and adjusted */ | 465 | /* TODO This is to be re-visited and adjusted */ |
466 | #define DFC_WRITE_WAIT_COUNT 1000 | 466 | #define DFC_WRITE_WAIT_COUNT 1000 |