aboutsummaryrefslogtreecommitdiff
path: root/board/esd/pf5200/pf5200.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/esd/pf5200/pf5200.c')
-rw-r--r--board/esd/pf5200/pf5200.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/board/esd/pf5200/pf5200.c b/board/esd/pf5200/pf5200.c
index 83dbfcb..2e07ac1 100644
--- a/board/esd/pf5200/pf5200.c
+++ b/board/esd/pf5200/pf5200.c
@@ -327,13 +327,11 @@ int phypower(int flag)
int do_phypower(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
{
- int status;
+ if (argv[1][0] == '0')
+ (void)phypower(0);
+ else
+ (void)phypower(1);
- if (argv[1][0] == '0') {
- status = phypower(0);
- } else {
- status = phypower(1);
- }
return (0);
}