mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
serial: altera_uart: convert to livetree
Convert 'altera_uart_ofdata_to_platdata' to use 'dev_read_u32_default' instead of 'fdtdec_get_int' and get rid of DECLARE_GLOBAL_DATA_PTR. Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
This commit is contained in:
parent
27c3e07bcb
commit
41b22c0acc
1 changed files with 1 additions and 4 deletions
|
@ -10,8 +10,6 @@
|
|||
#include <serial.h>
|
||||
#include <asm/io.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
/* status register */
|
||||
#define ALTERA_UART_TMT BIT(5) /* tx empty */
|
||||
#define ALTERA_UART_TRDY BIT(6) /* tx ready */
|
||||
|
@ -91,8 +89,7 @@ static int altera_uart_ofdata_to_platdata(struct udevice *dev)
|
|||
plat->regs = map_physmem(devfdt_get_addr(dev),
|
||||
sizeof(struct altera_uart_regs),
|
||||
MAP_NOCACHE);
|
||||
plat->uartclk = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
|
||||
"clock-frequency", 0);
|
||||
plat->uartclk = dev_read_u32_default(dev, "clock-frequency", 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue