cpu/ppc4xx/fdt.c: avoid strcpy() to constant string

strcpy() was iused with the target address being a pointer to a
constant string, which potentially is read-only. Use a (writable)
array of characters instead.

Signed-off-by: Wolfgang Denk <wd@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
master
Wolfgang Denk 15 years ago committed by Stefan Roese
parent f67066b6b0
commit 76706cb86b
  1. 2
      cpu/ppc4xx/fdt.c

@ -42,7 +42,7 @@ void __ft_board_setup(void *blob, bd_t *bd)
u32 bxcr;
u32 ranges[EBC_NUM_BANKS * 4];
u32 *p = ranges;
char *ebc_path = "/plb/opb/ebc";
char ebc_path[] = "/plb/opb/ebc";
ft_cpu_setup(blob, bd);

Loading…
Cancel
Save