diff options
author | Simon Glass | 2020-07-17 08:48:12 -0600 |
---|---|---|
committer | Bin Meng | 2020-07-20 09:46:44 +0800 |
commit | 36c184bd0a6b73ae3a3ca096a7d04e45c5301e14 (patch) | |
tree | 497ff1cdfc7837d75d147878a386e25364776f64 | |
parent | a6c9fd4da06f2893026e900401128ef9db6a4a2a (diff) |
x86: mtrr: Fix 'ensable' typo
Fix a typo in the command help.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
-rw-r--r-- | cmd/x86/mtrr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/x86/mtrr.c b/cmd/x86/mtrr.c index 084d7315f43..5d25c5802af 100644 --- a/cmd/x86/mtrr.c +++ b/cmd/x86/mtrr.c @@ -135,5 +135,5 @@ U_BOOT_CMD( "set <reg> <type> <start> <size> - set a register\n" "\t<type> is Uncacheable, Combine, Through, Protect, Back\n" "disable <reg> - disable a register\n" - "ensable <reg> - enable a register" + "enable <reg> - enable a register" ); |