ACPI S3: Cleanup RSDP reference
Variable name shadows parameter name used on other functions, and it can be local anyway after function removal. Change-Id: I3164b15b33d877fef139f48ab2091e60e3124c3b Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/15240 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
f2a50d1231
commit
072d436b3f
|
@ -1071,24 +1071,16 @@ static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp)
|
|||
return rsdp;
|
||||
}
|
||||
|
||||
static acpi_rsdp_t *rsdp;
|
||||
|
||||
void *acpi_get_wakeup_rsdp(void)
|
||||
{
|
||||
return rsdp;
|
||||
}
|
||||
|
||||
void *acpi_find_wakeup_vector(void)
|
||||
{
|
||||
char *p, *end;
|
||||
acpi_rsdt_t *rsdt;
|
||||
acpi_facs_t *facs;
|
||||
acpi_fadt_t *fadt = NULL;
|
||||
acpi_rsdp_t *rsdp = NULL;
|
||||
void *wake_vec;
|
||||
int i;
|
||||
|
||||
rsdp = NULL;
|
||||
|
||||
if (!acpi_is_wakeup())
|
||||
return NULL;
|
||||
|
||||
|
|
|
@ -614,7 +614,6 @@ void acpi_resume(void *wake_vec);
|
|||
void acpi_prepare_resume_backup(void);
|
||||
void mainboard_suspend_resume(void);
|
||||
void *acpi_find_wakeup_vector(void);
|
||||
void *acpi_get_wakeup_rsdp(void);
|
||||
void acpi_jump_to_wakeup(void *wakeup_addr);
|
||||
|
||||
/* Returns 0 = S0, 1 = S1 ... */
|
||||
|
|
Loading…
Reference in New Issue