src: Get rid of device_t
Use of device_t is deprecated. Change-Id: I6adc0429ae9ecc8f726d6167a6458d9333dc515f Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27036 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
committed by
Patrick Georgi
parent
c8a649c08f
commit
68c851bcd7
@@ -30,8 +30,11 @@
|
||||
/* Returns base of requested region encoded in the system agent. */
|
||||
static inline uintptr_t system_agent_region_base(size_t reg)
|
||||
{
|
||||
device_t dev = SA_DEV_ROOT;
|
||||
|
||||
#if defined(__SIMPLE_DEVICE__)
|
||||
pci_devfn_t dev = SA_DEV_ROOT;
|
||||
#else
|
||||
struct device *dev = SA_DEV_ROOT;
|
||||
#endif
|
||||
/* All regions concerned for have 1 MiB alignment. */
|
||||
return ALIGN_DOWN(pci_read_config32(dev, reg), 1 * MiB);
|
||||
}
|
||||
|
Reference in New Issue
Block a user