soc/intel/cannonlake/elog.c: Define __SIMPLE_DEVICE__
Change-Id: Ie2f02b9934d843c29d17a72a6bf3b2bae91ce8d1 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52457 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
This commit is contained in:
parent
fc8e997caa
commit
8a10aff35a
|
@ -1,5 +1,7 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
|
#define __SIMPLE_DEVICE__
|
||||||
|
|
||||||
#include <bootstate.h>
|
#include <bootstate.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
|
@ -11,11 +13,7 @@
|
||||||
#include <soc/pm.h>
|
#include <soc/pm.h>
|
||||||
|
|
||||||
struct pme_status_info {
|
struct pme_status_info {
|
||||||
#ifdef __SIMPLE_DEVICE__
|
|
||||||
pci_devfn_t dev;
|
pci_devfn_t dev;
|
||||||
#else
|
|
||||||
struct device *dev;
|
|
||||||
#endif
|
|
||||||
uint8_t reg_offset;
|
uint8_t reg_offset;
|
||||||
uint32_t elog_event;
|
uint32_t elog_event;
|
||||||
};
|
};
|
||||||
|
@ -25,11 +23,7 @@ struct pme_status_info {
|
||||||
static void pch_log_pme_internal_wake_source(void)
|
static void pch_log_pme_internal_wake_source(void)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
#ifdef __SIMPLE_DEVICE__
|
|
||||||
pci_devfn_t dev;
|
pci_devfn_t dev;
|
||||||
#else
|
|
||||||
struct device *dev;
|
|
||||||
#endif
|
|
||||||
uint16_t val;
|
uint16_t val;
|
||||||
bool dev_found = false;
|
bool dev_found = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue