[PATCH] common: deep-probe: fix DEEP_PROBE_UNKNOWN misspelling
Antony Pavlov
antonynpavlov at gmail.com
Wed Mar 20 22:53:12 PDT 2024
Signed-off-by: Antony Pavlov <antonynpavlov at gmail.com>
---
common/deep-probe.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/common/deep-probe.c b/common/deep-probe.c
index 931e5a17709..b270a10f7fe 100644
--- a/common/deep-probe.c
+++ b/common/deep-probe.c
@@ -7,18 +7,18 @@
#include <of.h>
enum deep_probe_state {
- DEEP_PROBE_UNKONWN = -1,
+ DEEP_PROBE_UNKNOWN = -1,
DEEP_PROBE_NOT_SUPPORTED,
DEEP_PROBE_SUPPORTED
};
-static enum deep_probe_state boardstate = DEEP_PROBE_UNKONWN;
+static enum deep_probe_state boardstate = DEEP_PROBE_UNKNOWN;
bool deep_probe_is_supported(void)
{
struct deep_probe_entry *board;
- if (boardstate > DEEP_PROBE_UNKONWN)
+ if (boardstate > DEEP_PROBE_UNKNOWN)
return boardstate;
/* determine boardstate */
--
2.39.0
More information about the barebox
mailing list