diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/cmd_led.c | 6 | ||||
| -rw-r--r-- | common/cmd_sata.c | 2 | 
2 files changed, 5 insertions, 3 deletions
| diff --git a/common/cmd_led.c b/common/cmd_led.c index c725f95ac..84f79fae0 100644 --- a/common/cmd_led.c +++ b/common/cmd_led.c @@ -110,13 +110,15 @@ int do_led (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  				if (led_commands[i].on)  					led_commands[i].on();  				else -					__led_set(led_commands[i].mask, STATUS_LED_ON); +					__led_set(led_commands[i].mask, +							  STATUS_LED_ON);  				break;  			case LED_OFF:  				if (led_commands[i].off)  					led_commands[i].off();  				else -					__led_set(led_commands[i].mask, STATUS_LED_OFF); +					__led_set(led_commands[i].mask, +							  STATUS_LED_OFF);  				break;  			case LED_TOGGLE:  				if (led_commands[i].toggle) diff --git a/common/cmd_sata.c b/common/cmd_sata.c index b401bd102..8d57285d0 100644 --- a/common/cmd_sata.c +++ b/common/cmd_sata.c @@ -196,7 +196,7 @@ static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  U_BOOT_CMD(  	sata, 5, 1, do_sata,  	"SATA sub system", -	"sata init - init SATA sub system\n" +	"init - init SATA sub system\n"  	"sata info - show available SATA devices\n"  	"sata device [dev] - show or set current device\n"  	"sata part [dev] - print partition table\n" |