diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/cannonlake/elog.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/soc/intel/cannonlake/elog.c b/src/soc/intel/cannonlake/elog.c index 4c39988fff..dcc1a798cd 100644 --- a/src/soc/intel/cannonlake/elog.c +++ b/src/soc/intel/cannonlake/elog.c @@ -1,5 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#define __SIMPLE_DEVICE__ + #include <bootstate.h> #include <console/console.h> #include <device/pci_ops.h> @@ -11,11 +13,7 @@ #include <soc/pm.h> struct pme_status_info { -#ifdef __SIMPLE_DEVICE__ pci_devfn_t dev; -#else - struct device *dev; -#endif uint8_t reg_offset; uint32_t elog_event; }; @@ -25,11 +23,7 @@ struct pme_status_info { static void pch_log_pme_internal_wake_source(void) { size_t i; -#ifdef __SIMPLE_DEVICE__ pci_devfn_t dev; -#else - struct device *dev; -#endif uint16_t val; bool dev_found = false; |