mb/intel/ehlcrb: Remove JSL sku id info in SMBIOS

Remove JSL specific SMBIOS sku id info as it is not required by
EHL.

Signed-off-by: Tan, Lean Sheng <lean.sheng.tan@intel.com>
Change-Id: Ib672eb456ba62f2eb7f941630c4fbb34823664f5
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48123
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Tan, Lean Sheng 2020-11-27 04:33:34 -08:00 committed by Werner Zeh
parent 1ec9284e14
commit 7d83309eb2
1 changed files with 0 additions and 7 deletions

View File

@ -3,7 +3,6 @@
#include <baseboard/variants.h>
#include <device/device.h>
#include <soc/gpio.h>
#include <smbios.h>
static void mainboard_init(void *chip_info)
{
@ -14,12 +13,6 @@ static void mainboard_init(void *chip_info)
gpio_configure_pads(pads, num);
}
const char *smbios_system_sku(void)
{
static const char *sku_str = "sku2147483647"; /* sku{0-1} */
return sku_str;
}
struct chip_operations mainboard_ops = {
.init = mainboard_init,
};