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>
diff --git a/post/tests.c b/post/tests.c
index a4d4165..d8ac54e 100644
--- a/post/tests.c
+++ b/post/tests.c
@@ -173,7 +173,7 @@
"ETHERNET test",
"ethernet",
"This test verifies the ETHERNET operation.",
- POST_RAM | POST_ALWAYS | POST_MANUAL,
+ POST_RAM | POST_ALWAYS,
ðer_post_test,
NULL,
NULL,
@@ -185,7 +185,7 @@
"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 @@
"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 @@
"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,