diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2014-01-14 21:49:23 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-01-15 06:11:47 -0500 |
commit | 793708fffffad737d8b0113e41f0d14a38e8765e (patch) | |
tree | 3fb18a99542fe375201e35ec381ceec59a5a4c02 | |
parent | b464f6b68e62d1664c34c8655cc3df192799338c (diff) |
[media] au0828: Fix sparse non static symbol warning
Fixes the following sparse warning:
drivers/media/usb/au0828/au0828-dvb.c:36:5: warning:
symbol 'preallocate_big_buffers' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/media/usb/au0828/au0828-dvb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/au0828/au0828-dvb.c b/drivers/media/usb/au0828/au0828-dvb.c index 19fe049aeb5e..4ae8b1074649 100644 --- a/drivers/media/usb/au0828/au0828-dvb.c +++ b/drivers/media/usb/au0828/au0828-dvb.c | |||
@@ -33,7 +33,7 @@ | |||
33 | #include "mxl5007t.h" | 33 | #include "mxl5007t.h" |
34 | #include "tda18271.h" | 34 | #include "tda18271.h" |
35 | 35 | ||
36 | int preallocate_big_buffers; | 36 | static int preallocate_big_buffers; |
37 | module_param_named(preallocate_big_buffers, preallocate_big_buffers, int, 0644); | 37 | module_param_named(preallocate_big_buffers, preallocate_big_buffers, int, 0644); |
38 | MODULE_PARM_DESC(preallocate_big_buffers, "Preallocate the larger transfer buffers at module load time"); | 38 | MODULE_PARM_DESC(preallocate_big_buffers, "Preallocate the larger transfer buffers at module load time"); |
39 | 39 | ||