summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2016-03-27 10:18:55 -0400
committerTom Rini <trini@konsulko.com>2016-04-01 17:17:43 -0400
commit5735bca5f677a5aeb61364a6491080c6bb2ebc0e (patch)
treeedaa715bbcbb8d152006c4a63709263f890ee649
parent92a4c3dfb37d711b8a98e5a606ab0a3e720b70d5 (diff)
downloadtalos-obmc-uboot-5735bca5f677a5aeb61364a6491080c6bb2ebc0e.tar.gz
talos-obmc-uboot-5735bca5f677a5aeb61364a6491080c6bb2ebc0e.zip
post: Delete unnecessary bitmask of POST_MANUAL from POST_ALWAYS
Since POST_ALWAYS is defined as: #define POST_ALWAYS (POST_NORMAL | \ POST_SLOWTEST | \ POST_MANUAL | \ POST_POWERON ) there is no need to redundantly bitmask it with POST_MANUAL. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
-rw-r--r--post/tests.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/post/tests.c b/post/tests.c
index a4d4165460..d8ac54e758 100644
--- a/post/tests.c
+++ b/post/tests.c
@@ -173,7 +173,7 @@ struct post_test post_list[] =
"ETHERNET test",
"ethernet",
"This test verifies the ETHERNET operation.",
- POST_RAM | POST_ALWAYS | POST_MANUAL,
+ POST_RAM | POST_ALWAYS,
&ether_post_test,
NULL,
NULL,
@@ -185,7 +185,7 @@ struct post_test post_list[] =
"SPI test",
"spi",
"This test verifies the SPI operation.",
- POST_RAM | POST_ALWAYS | POST_MANUAL,
+ POST_RAM | POST_ALWAYS,
&spi_post_test,
NULL,
NULL,
@@ -197,7 +197,7 @@ struct post_test post_list[] =
"USB test",
"usb",
"This test verifies the USB operation.",
- POST_RAM | POST_ALWAYS | POST_MANUAL,
+ POST_RAM | POST_ALWAYS,
&usb_post_test,
NULL,
NULL,
@@ -233,7 +233,7 @@ struct post_test post_list[] =
"DSP test",
"dsp",
"This test checks any connected DSP(s).",
- POST_RAM | POST_ALWAYS | POST_MANUAL,
+ POST_RAM | POST_ALWAYS,
&dsp_post_test,
NULL,
NULL,
OpenPOWER on IntegriCloud