Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1477839
| From | Elias Boutaleb <kagekyio@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] [trivial] comedi/dt2811: fix warnings on globals |
| Date | 2016-09-07 00:00 +0200 |
| Message-ID | <sewzo-7DZ-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Elias Boutaleb <elias.boutaleb@etu.upmc.fr>
This patch fixes the following two warnings on the dt2811 driver found using sparse:
drivers/staging/comedi/drivers/dt2811.c:99:20: warning: symbol 'dt2811_clk_dividers' was not declared. Should it be static?
drivers/staging/comedi/drivers/dt2811.c:103:20: warning: symbol 'dt2811_clk_multipliers' was not declared. Should it be static?
---
drivers/staging/comedi/drivers/dt2811.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/comedi/drivers/dt2811.c b/drivers/staging/comedi/drivers/dt2811.c
index 8bbd938..fcd8547 100644
--- a/drivers/staging/comedi/drivers/dt2811.c
+++ b/drivers/staging/comedi/drivers/dt2811.c
@@ -96,11 +96,11 @@
* 6 6 100 kHz 6 1000000
* 7 12 50 kHz 7 10000000
*/
-const unsigned int dt2811_clk_dividers[] = {
+static const unsigned int dt2811_clk_dividers[] = {
1, 10, 2, 3, 4, 5, 6, 12
};
-const unsigned int dt2811_clk_multipliers[] = {
+static const unsigned int dt2811_clk_multipliers[] = {
1, 10, 100, 1000, 10000, 100000, 1000000, 10000000
};
--
2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] [trivial] comedi/dt2811: fix warnings on globals Elias Boutaleb <kagekyio@gmail.com> - 2016-09-07 00:00 +0200
csiph-web