aboutsummaryrefslogtreecommitdiff
path: root/util/intelp2m/parser/parser.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/intelp2m/parser/parser.go')
-rw-r--r--util/intelp2m/parser/parser.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/intelp2m/parser/parser.go b/util/intelp2m/parser/parser.go
index a6fa315e0e..b7b41412e5 100644
--- a/util/intelp2m/parser/parser.go
+++ b/util/intelp2m/parser/parser.go
@@ -14,6 +14,7 @@ import (
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/tgl"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/adl"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/jsl"
+ "review.coreboot.org/coreboot.git/util/intelp2m/platforms/mtl"
"review.coreboot.org/coreboot.git/util/intelp2m/config"
)
@@ -154,6 +155,7 @@ func (parser *ParserData) PlatformSpecificInterfaceSet() {
config.TigerType : tgl.PlatformSpecific{},
config.AlderType : adl.PlatformSpecific{},
config.JasperType : jsl.PlatformSpecific{},
+ config.MeteorType : mtl.PlatformSpecific{},
}
parser.platform = platform[config.PlatformGet()]
}