summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJason Kridner <jkridner@beagleboard.org>2011-04-20 18:13:49 -0500
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-09-04 11:36:22 +0200
commit4086b51cb7eac451f96130affbc17094a9e7b75a (patch)
treee313b774357350451809042e42955bc852b3e90a /common
parent4421acf8cdc2afed48f430e4a88eff39df86c0dc (diff)
downloadblackbird-obmc-uboot-4086b51cb7eac451f96130affbc17094a9e7b75a.tar.gz
blackbird-obmc-uboot-4086b51cb7eac451f96130affbc17094a9e7b75a.zip
led: correct off/on locations in structure
Although the initialization should probably be done with names, the existing implementation has these structures filled in the opposite order. Signed-off-by: Jason Kridner <jkridner@beagleboard.org> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Joel A Fernandes <agnel.joel@gmail.com> Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'common')
-rw-r--r--common/cmd_led.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_led.c b/common/cmd_led.c
index 8b468486e0..d14dd5adab 100644
--- a/common/cmd_led.c
+++ b/common/cmd_led.c
@@ -34,8 +34,8 @@
struct led_tbl_s {
char *string; /* String for use in the command */
led_id_t mask; /* Mask used for calling __led_set() */
- void (*on)(void); /* Optional fucntion for turning LED on */
- void (*off)(void); /* Optional fucntion for turning LED on */
+ void (*off)(void); /* Optional function for turning LED off */
+ void (*on)(void); /* Optional function for turning LED on */
};
typedef struct led_tbl_s led_tbl_t;
OpenPOWER on IntegriCloud