mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-25 11:25:17 +00:00
muas3001: remove BRG clock node fixup to use common mpc8260 code.
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com> Acked-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
1612266711
commit
4743f02b8f
1 changed files with 0 additions and 16 deletions
|
@ -310,7 +310,6 @@ void ft_blob_update (void *blob, bd_t *bd)
|
|||
int ret, nodeoffset = 0;
|
||||
ulong memory_data[2] = {0};
|
||||
ulong flash_data[4] = {0};
|
||||
ulong freq = 0;
|
||||
ulong speed = 0;
|
||||
|
||||
memory_data[0] = cpu_to_be32 (bd->bi_memstart);
|
||||
|
@ -359,21 +358,6 @@ void ft_blob_update (void *blob, bd_t *bd)
|
|||
"err:%s\n", fdt_strerror (nodeoffset));
|
||||
}
|
||||
|
||||
/* brg clock */
|
||||
nodeoffset = fdt_path_offset (blob, "/soc/cpm/brg");
|
||||
if (nodeoffset >= 0) {
|
||||
freq = cpu_to_be32 (bd->bi_brgfreq);
|
||||
ret = fdt_setprop (blob, nodeoffset, "clock-frequency", &freq,
|
||||
sizeof (unsigned long));
|
||||
if (ret < 0)
|
||||
printf ("ft_blob_update): cannot set /soc/cpm/brg/clock-frequency "
|
||||
"property err:%s\n", fdt_strerror (ret));
|
||||
} else {
|
||||
/* memory node is required in dts */
|
||||
printf ("ft_blob_update(): cannot find /soc/cpm/brg/clock-frequency node "
|
||||
"err:%s\n", fdt_strerror (nodeoffset));
|
||||
}
|
||||
|
||||
/* baudrate */
|
||||
nodeoffset = fdt_path_offset (blob, "/soc/cpm/serial");
|
||||
if (nodeoffset >= 0) {
|
||||
|
|
Loading…
Reference in a new issue