From 7d640e2ac791d9847e70ecfc41940ce7d104c06a Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Sat, 17 Aug 2019 18:29:02 +0300 Subject: device/pnp.h: Move __SIMPLE_DEVICE__ guards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some files under src/ec are built for both ramstage and SMM. This change provides declarations of the required struct to have __SMM__ guards removed from those files. Change-Id: Ic0c01a11f29381153f19378d5bc4559db8126e00 Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/34943 Tested-by: build bot (Jenkins) Reviewed-by: HAOUAS Elyes Reviewed-by: Aaron Durbin --- src/include/device/pnp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/device') diff --git a/src/include/device/pnp.h b/src/include/device/pnp.h index bc6391f1f5..ee92a32d08 100644 --- a/src/include/device/pnp.h +++ b/src/include/device/pnp.h @@ -18,6 +18,8 @@ void pnp_set_iobase(struct device *dev, u8 index, u16 iobase); void pnp_set_irq(struct device *dev, u8 index, u8 irq); void pnp_set_drq(struct device *dev, u8 index, u8 drq); +#endif /* __SIMPLE_DEVICE */ + /* PNP device operations */ void pnp_read_resources(struct device *dev); void pnp_set_resources(struct device *dev); @@ -108,5 +110,4 @@ static inline void pnp_write_index(u16 port, u8 reg, u8 value) outb(value, port + 1); } -#endif /* ! __SIMPLE_DEVICE__ */ #endif /* DEVICE_PNP_H */ -- cgit v1.2.3