diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-08-30 10:14:08 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-03 00:11:35 +0000 |
commit | 7b378b146944d92722705a94d1ab4a45fc63bc7a (patch) | |
tree | 3e529410bffc8af20c4e195d3fa2d3136cfc4874 /src | |
parent | 1b3462749b064ea46859273ea4670bf6abe414c3 (diff) |
mb/prodrive/hermes: Use `BOARD_TYPE_SERVER` define
Change-Id: I291dc71bb6e3888b71ebce315f9ad09ccbc4a9a7
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57259
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/prodrive/hermes/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/prodrive/hermes/romstage.c b/src/mainboard/prodrive/hermes/romstage.c index 1bb8a7f244..3fda6a8f22 100644 --- a/src/mainboard/prodrive/hermes/romstage.c +++ b/src/mainboard/prodrive/hermes/romstage.c @@ -7,7 +7,7 @@ void mainboard_memory_init_params(FSPM_UPD *memupd) { - memupd->FspmConfig.UserBd = 7; + memupd->FspmConfig.UserBd = BOARD_TYPE_SERVER; memupd->FspmTestConfig.SmbusSpdWriteDisable = 0; memupd->FspmConfig.IedSize = 0x400000; cannonlake_memcfg_init(&memupd->FspmConfig, variant_memcfg_config()); |