]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
sdhci: fix led naming
authorHelmut Schaa <helmut.schaa@googlemail.com>
Sat, 14 Feb 2009 15:22:39 +0000 (16:22 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 17 Mar 2009 00:32:17 +0000 (17:32 -0700)
commit 5dbace0c9ba110c1a3810a89fa6bf12b7574b5a3 upstream.

Fix the led device naming for the sdhci driver.

The led class documentation defines the led name to have the
form "devicename:colour:function" while not applicable sections
should be left blank.

To comply with the documentation the led device name is changed
from "mmc*" to "mmc*::".

Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/mmc/host/sdhci.c
drivers/mmc/host/sdhci.h

index 4d010a984bed07e6bcbf17899118f3e022fc3200..59166588275ffd84b16a782bb5fc66700d1a7118 100644 (file)
@@ -1718,7 +1718,9 @@ int sdhci_add_host(struct sdhci_host *host)
 #endif
 
 #ifdef CONFIG_LEDS_CLASS
-       host->led.name = mmc_hostname(mmc);
+       snprintf(host->led_name, sizeof(host->led_name),
+               "%s::", mmc_hostname(mmc));
+       host->led.name = host->led_name;
        host->led.brightness = LED_OFF;
        host->led.default_trigger = mmc_hostname(mmc);
        host->led.brightness_set = sdhci_led_control;
index 31f4b1528e76137a43219c5b8d8ba7fb82d625c8..6a11adfc7604ff1bd8ee4f3eacae57edaa78311b 100644 (file)
@@ -222,6 +222,7 @@ struct sdhci_host {
 
 #ifdef CONFIG_LEDS_CLASS
        struct led_classdev     led;            /* LED control */
+       char   led_name[32];
 #endif
 
        spinlock_t              lock;           /* Mutex */