Merge branch 'master' of git://git.denx.de/u-boot-mpc5xxx
[platform/kernel/u-boot.git] / board / bf537-stamp / cmd_bf537led.c
index fa650f2..e65c4f8 100644 (file)
@@ -33,7 +33,7 @@
        "led <number> <action>\n" \
        "    <number>  - Index (0-5) of LED to change, or \"all\"\n" \
        "    <action>  - Must be one of:\n" \
-       "               on off toggle\n"
+       "               on off toggle"
 
 /* Number of LEDs supported by the board */
 #define NUMBER_LEDS     6
@@ -191,11 +191,11 @@ void set_led_state(int index, int state)
 /* Display usage information */
 void show_cmd_usage()
 {
-       printf("Usage:\n%s", USAGE_LONG);
+       printf("Usage:\n%s\n", USAGE_LONG);
 }
 
 /* Register information for u-boot to find this command */
 U_BOOT_CMD(led, 3, 1, do_bf537led,
-          "led- Control BF537 stamp LEDs\n", USAGE_LONG);
+          "Control BF537 stamp LEDs", USAGE_LONG);
 
 #endif