soc/amd: Rename chipset_state to chipset_power_state
To implement some common helpers for CBMEM_ID_POWER_STATE allocation use the same struct name as soc/intel. Change-Id: I5d2c06a2a7b4602374562197c99b0ad7bcf50afb Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49835 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
ac0dc4a840
commit
10f7f997ad
|
@ -51,7 +51,7 @@ static void pm_fill_gnvs(const struct acpi_pm_gpe_state *state)
|
|||
|
||||
static void set_nvs_sws(void *unused)
|
||||
{
|
||||
struct chipset_state *state;
|
||||
struct chipset_power_state *state;
|
||||
|
||||
state = cbmem_find(CBMEM_ID_POWER_STATE);
|
||||
if (state == NULL)
|
||||
|
|
|
@ -205,7 +205,7 @@ static void gpp_clk_setup(void)
|
|||
|
||||
void southbridge_init(void *chip_info)
|
||||
{
|
||||
struct chipset_state *state;
|
||||
struct chipset_power_state *state;
|
||||
|
||||
i2c_soc_init();
|
||||
sb_init_acpi_ports();
|
||||
|
|
|
@ -18,7 +18,7 @@ uintptr_t agesa_write_acpi_tables(const struct device *device, uintptr_t current
|
|||
const char *soc_acpi_name(const struct device *dev);
|
||||
|
||||
/* Object to capture state of chipset for logging events. */
|
||||
struct chipset_state {
|
||||
struct chipset_power_state {
|
||||
struct acpi_pm_gpe_state gpe_state;
|
||||
struct gpio_wake_state gpio_state;
|
||||
};
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include "chip.h"
|
||||
#include <fsp/api.h>
|
||||
|
||||
static struct chipset_state chipset_state;
|
||||
static struct chipset_power_state chipset_state;
|
||||
|
||||
static void fill_chipset_state(void)
|
||||
{
|
||||
|
@ -30,7 +30,7 @@ static void fill_chipset_state(void)
|
|||
|
||||
static void add_chipset_state_cbmem(int unused)
|
||||
{
|
||||
struct chipset_state *state;
|
||||
struct chipset_power_state *state;
|
||||
|
||||
state = cbmem_add(CBMEM_ID_POWER_STATE, sizeof(*state));
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ unsigned long southbridge_write_acpi_tables(const struct device *device,
|
|||
|
||||
const char *soc_acpi_name(const struct device *dev);
|
||||
|
||||
struct chipset_state {
|
||||
struct chipset_power_state {
|
||||
struct acpi_pm_gpe_state gpe_state;
|
||||
};
|
||||
|
||||
|
|
|
@ -404,7 +404,7 @@ static void sb_init_acpi_ports(void)
|
|||
|
||||
void southbridge_init(void *chip_info)
|
||||
{
|
||||
struct chipset_state *state;
|
||||
struct chipset_power_state *state;
|
||||
|
||||
sb_init_acpi_ports();
|
||||
|
||||
|
|
Loading…
Reference in New Issue