projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46689a9
)
ram: bmips: convert to use live dt
author
Álvaro Fernández Rojas
<
[email protected]
>
Thu, 22 Mar 2018 18:39:38 +0000
(19:39 +0100)
committer
Daniel Schwierzeck
<
[email protected]
>
Fri, 1 Jun 2018 13:56:02 +0000
(15:56 +0200)
Signed-off-by: Álvaro Fernández Rojas <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
Reviewed-by: Daniel Schwierzeck <
[email protected]
>
drivers/ram/bmips_ram.c
patch
|
blob
|
history
diff --git
a/drivers/ram/bmips_ram.c
b/drivers/ram/bmips_ram.c
index ad2f0ac2f07b5105d26a028295e243bb7b9a057c..cc37dfa08c14d3806f769629efbcb0b4c1d8f772 100644
(file)
--- a/
drivers/ram/bmips_ram.c
+++ b/
drivers/ram/bmips_ram.c
@@
-150,14
+150,11
@@
static int bmips_ram_probe(struct udevice *dev)
struct bmips_ram_priv *priv = dev_get_priv(dev);
const struct bmips_ram_hw *hw =
(const struct bmips_ram_hw *)dev_get_driver_data(dev);
- fdt_addr_t addr;
- fdt_size_t size;
-
addr = devfdt_get_addr_size_index(dev, 0, &size
);
- if (
addr == FDT_ADDR_T_NONE
)
+
priv->regs = dev_remap_addr(dev
);
+ if (
!priv->regs
)
return -EINVAL;
- priv->regs = ioremap(addr, size);
priv->hw = hw;
return 0;