nb/intel/sandybridge: Remove unnecessary `struct sys_info`
It was only used in one function, but its value was never read. Drop it. Change-Id: Ib511352d51d4452d666640d0f52810b06c8d61ce Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43702 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
e4c0555230
commit
8be5b59a41
|
@ -5,12 +5,9 @@
|
|||
|
||||
#include "pei_data.h"
|
||||
|
||||
struct sys_info {
|
||||
u8 boot_path;
|
||||
#define BOOT_PATH_NORMAL 0
|
||||
#define BOOT_PATH_RESET 1
|
||||
#define BOOT_PATH_RESUME 2
|
||||
} __packed;
|
||||
|
||||
void sdram_initialize(struct pei_data *pei_data);
|
||||
void save_mrc_data(struct pei_data *pei_data);
|
||||
|
|
|
@ -120,7 +120,6 @@ static void prepare_mrc_cache(struct pei_data *pei_data)
|
|||
*/
|
||||
void sdram_initialize(struct pei_data *pei_data)
|
||||
{
|
||||
struct sys_info sysinfo;
|
||||
int (*entry)(struct pei_data *pei_data) __attribute__((regparm(1)));
|
||||
|
||||
/* Wait for ME to be ready */
|
||||
|
@ -129,10 +128,6 @@ void sdram_initialize(struct pei_data *pei_data)
|
|||
|
||||
printk(BIOS_DEBUG, "Starting UEFI PEI System Agent\n");
|
||||
|
||||
memset(&sysinfo, 0, sizeof(sysinfo));
|
||||
|
||||
sysinfo.boot_path = pei_data->boot_mode;
|
||||
|
||||
/*
|
||||
* Do not pass MRC data in for recovery mode boot,
|
||||
* Always pass it in for S3 resume.
|
||||
|
|
Loading…
Reference in New Issue