From 8a10aff35aa723d639ae627ab1fc56accc036f64 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Sat, 17 Apr 2021 12:16:39 +0200 Subject: [PATCH] soc/intel/cannonlake/elog.c: Define __SIMPLE_DEVICE__ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie2f02b9934d843c29d17a72a6bf3b2bae91ce8d1 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/52457 Tested-by: build bot (Jenkins) Reviewed-by: Tim Wawrzynczak Reviewed-by: Michael Niewöhner --- src/soc/intel/cannonlake/elog.c | 10 ++-------- 1 file 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 #include #include @@ -11,11 +13,7 @@ #include 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;