mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
pci: pci-uclass: Fix incorrect argument in map_physmem
Fix argument ordering for map_physmem() called in dm_pci_map_ea_bar(). Additinally minor spelling correction. Signed-off-by: Suneel Garapati <sgarapati@marvell.com> Reviewed-by: Simon Glass <sjg@chromium.org> Cc: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
e002474158
commit
b3699a13a6
1 changed files with 2 additions and 2 deletions
|
@ -1424,7 +1424,7 @@ static void *dm_pci_map_ea_bar(struct udevice *dev, int bar, int flags,
|
|||
}
|
||||
|
||||
/* size ignored for now */
|
||||
return map_physmem(addr, flags, 0);
|
||||
return map_physmem(addr, 0, flags);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -1450,7 +1450,7 @@ void *dm_pci_map_bar(struct udevice *dev, int bar, int flags)
|
|||
|
||||
/*
|
||||
* Pass "0" as the length argument to pci_bus_to_virt. The arg
|
||||
* isn't actualy used on any platform because u-boot assumes a static
|
||||
* isn't actually used on any platform because U-Boot assumes a static
|
||||
* linear mapping. In the future, this could read the BAR size
|
||||
* and pass that as the size if needed.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue