aboutsummaryrefslogtreecommitdiff
path: root/util/intelp2m/main.go
diff options
context:
space:
mode:
authorBenjamin Doron <benjamin.doron00@gmail.com>2020-10-22 16:36:29 +0000
committerPatrick Georgi <pgeorgi@google.com>2020-10-26 06:49:03 +0000
commit03102794115230e623ecb95e50e5d7f899956b84 (patch)
treef3a1f782258fc0d37173c272b86955d4be35c059 /util/intelp2m/main.go
parent308c1b79768a0cb1c48a150f8a75da71dec99b5f (diff)
util/intelp2m: Fix typos
Change-Id: I7210fb44ed54d365181ca23c6b92d2269dc8a697 Signed-off-by: Benjamin Doron <benjamin.doron00@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45007 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/intelp2m/main.go')
-rw-r--r--util/intelp2m/main.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/intelp2m/main.go b/util/intelp2m/main.go
index a7bbc91079..511f54d0d0 100644
--- a/util/intelp2m/main.go
+++ b/util/intelp2m/main.go
@@ -67,9 +67,9 @@ func main() {
"\tsnr - Sunrise PCH or Skylake/Kaby Lake SoC\n"+
"\tlbg - Lewisburg PCH with Xeon SP\n"+
"\tapl - Apollo Lake SoC\n"+
- "\tcnl - CannonLake-LP or Whiskeylake/Coffelake/Cometlake-U SoC\n")
+ "\tcnl - CannonLake-LP or Whiskeylake/Coffeelake/Cometlake-U SoC\n")
- filedstyle := flag.String("fld", "none", "set fileds macros style:\n"+
+ fieldstyle := flag.String("fld", "none", "set fields macros style:\n"+
"\tcb - use coreboot style for bit fields macros\n"+
"\tfsp - use fsp style\n"+
"\traw - do not convert, print as is\n")
@@ -106,8 +106,8 @@ func main() {
os.Exit(1)
}
- if config.FldStyleSet(*filedstyle) != 0 {
- fmt.Printf("Error! Unknown bit fields style option -%s!\n", *filedstyle)
+ if config.FldStyleSet(*fieldstyle) != 0 {
+ fmt.Printf("Error! Unknown bit fields style option -%s!\n", *fieldstyle)
os.Exit(1)
}