mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-23 14:51:31 +02:00
pci: pci_mvebu, pci_aardvark: Fix size of configuration cache
Since u32 takes up 4 bytes, we need to divide the number of u32s by 4 for cfgcache. Signed-off-by: Marek Behún <marek.behun@nic.cz> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
cfbd2bc695
commit
e967c84a6d
@ -202,7 +202,7 @@ struct pcie_advk {
|
||||
int sec_busno;
|
||||
struct udevice *dev;
|
||||
struct gpio_desc reset_gpio;
|
||||
u32 cfgcache[0x34 - 0x10];
|
||||
u32 cfgcache[(0x34 - 0x10) / 4];
|
||||
bool cfgcrssve;
|
||||
};
|
||||
|
||||
|
@ -88,7 +88,7 @@ struct mvebu_pcie {
|
||||
unsigned int mem_attr;
|
||||
unsigned int io_target;
|
||||
unsigned int io_attr;
|
||||
u32 cfgcache[0x34 - 0x10];
|
||||
u32 cfgcache[(0x34 - 0x10) / 4];
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user