* [patch 4/5] sparse: leds-h1940.c: make non-exported symbols static
[not found] <20080607153655.026170849@fluff.org.uk>
@ 2008-06-07 15:36 ` Ben Dooks
2008-06-09 21:02 ` Richard Purdie
0 siblings, 1 reply; 2+ messages in thread
From: Ben Dooks @ 2008-06-07 15:36 UTC (permalink / raw)
To: Linux ARM Kernel; +Cc: Richard Purdie, Linux Kernel, Arnaud Patard, Ben Dooks
[-- Attachment #1: sparse-fix-h1940-leds.patch --]
[-- Type: text/plain, Size: 1954 bytes --]
We do not need to export any of the routines inside
drivers/leds/leds-h1940.c, so make them all static to
quieten the sparse output for this driver.
Fixes the following sparse errors:
drivers/leds/leds-h1940.c:26:6: warning: symbol 'h1940_greenled_set' was not declared. Should it be static?
drivers/leds/leds-h1940.c:55:6: warning: symbol 'h1940_redled_set' was not declared. Should it be static?
drivers/leds/leds-h1940.c:85:6: warning: symbol 'h1940_blueled_set' was not declared. Should it be static?
CC: Richard Purdie <rpurdie@rpsys.net>
CC: Linux Kernel <linux-kernel@vger.kernel.org>
CC: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Index: linux-2.6.26-rc5/drivers/leds/leds-h1940.c
===================================================================
--- linux-2.6.26-rc5.orig/drivers/leds/leds-h1940.c 2008-06-07 16:12:19.000000000 +0100
+++ linux-2.6.26-rc5/drivers/leds/leds-h1940.c 2008-06-07 16:13:18.000000000 +0100
@@ -23,7 +23,8 @@
/*
* Green led.
*/
-void h1940_greenled_set(struct led_classdev *led_dev, enum led_brightness value)
+static void h1940_greenled_set(struct led_classdev *led_dev,
+ enum led_brightness value)
{
switch (value) {
case LED_HALF:
@@ -52,7 +53,8 @@ static struct led_classdev h1940_greenle
/*
* Red led.
*/
-void h1940_redled_set(struct led_classdev *led_dev, enum led_brightness value)
+static void h1940_redled_set(struct led_classdev *led_dev,
+ enum led_brightness value)
{
switch (value) {
case LED_HALF:
@@ -82,7 +84,8 @@ static struct led_classdev h1940_redled
* Blue led.
* (it can only be blue flashing led)
*/
-void h1940_blueled_set(struct led_classdev *led_dev, enum led_brightness value)
+static void h1940_blueled_set(struct led_classdev *led_dev,
+ enum led_brightness value)
{
if (value) {
/* flashing Blue */
--
Ben (ben@fluff.org, http://www.fluff.org/)
'a smiley only costs 4 bytes'
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch 4/5] sparse: leds-h1940.c: make non-exported symbols static
2008-06-07 15:36 ` [patch 4/5] sparse: leds-h1940.c: make non-exported symbols static Ben Dooks
@ 2008-06-09 21:02 ` Richard Purdie
0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2008-06-09 21:02 UTC (permalink / raw)
To: Ben Dooks; +Cc: Linux ARM Kernel, Linux Kernel, Arnaud Patard
On Sat, 2008-06-07 at 16:36 +0100, Ben Dooks wrote:
> plain text document attachment (sparse-fix-h1940-leds.patch)
> We do not need to export any of the routines inside
> drivers/leds/leds-h1940.c, so make them all static to
> quieten the sparse output for this driver.
>
> Fixes the following sparse errors:
> drivers/leds/leds-h1940.c:26:6: warning: symbol 'h1940_greenled_set' was not declared. Should it be static?
> drivers/leds/leds-h1940.c:55:6: warning: symbol 'h1940_redled_set' was not declared. Should it be static?
> drivers/leds/leds-h1940.c:85:6: warning: symbol 'h1940_blueled_set' was not declared. Should it be static?
>
> CC: Richard Purdie <rpurdie@rpsys.net>
> CC: Linux Kernel <linux-kernel@vger.kernel.org>
> CC: Arnaud Patard <arnaud.patard@rtp-net.org>
> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Queued in the LEDs tree, thanks.
Richard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-06-09 21:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20080607153655.026170849@fluff.org.uk>
2008-06-07 15:36 ` [patch 4/5] sparse: leds-h1940.c: make non-exported symbols static Ben Dooks
2008-06-09 21:02 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox