sc7280: Reserve wlan & wpss dram regions index order corrected

BUG=b:182963902
TEST=Validated on qualcomm sc7280 developement board

Signed-off-by: Ravi Kumar Bokka <rbokka@codeaurora.org>
Change-Id: I8501e9ce52bb296bb42797d8b43fd38174b80550
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55102
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
This commit is contained in:
Ravi Kumar Bokka 2021-05-31 20:50:12 +05:30 committed by Patrick Georgi
parent b2bb959ecf
commit 414b4269be
1 changed files with 2 additions and 2 deletions

View File

@ -12,9 +12,9 @@ static void soc_read_resources(struct device *dev)
ddr_region->size / KiB);
reserved_ram_resource(dev, 1, (uintptr_t)_dram_soc / KiB,
REGION_SIZE(dram_soc) / KiB);
reserved_ram_resource(dev, 4, (uintptr_t)_dram_wlan / KiB,
reserved_ram_resource(dev, 2, (uintptr_t)_dram_wlan / KiB,
REGION_SIZE(dram_wlan) / KiB);
reserved_ram_resource(dev, 5, (uintptr_t)_dram_wpss / KiB,
reserved_ram_resource(dev, 3, (uintptr_t)_dram_wpss / KiB,
REGION_SIZE(dram_wpss) / KiB);
}