diff options
author | Ben Whitten <ben.whitten@gmail.com> | 2015-12-30 13:05:58 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-01-14 22:11:34 -0500 |
commit | 192bc6948b02ff4168cab16162fffb507946dc2b (patch) | |
tree | b49cf85a3fa910182ce7dc2508f00ccb8ade03d4 /arch/powerpc/cpu/mpc8xx/fec.c | |
parent | 4edde96111aefac63d6aaca6ba87a90d149e973e (diff) | |
download | u-boot-192bc6948b02ff4168cab16162fffb507946dc2b.tar.gz |
Fix GCC format-security errors and convert sprintfs.
With format-security errors turned on, GCC picks up the use of sprintf with
a format parameter not being a string literal.
Simple uses of sprintf are also converted to use strcpy.
Signed-off-by: Ben Whitten <ben.whitten@gmail.com>
Acked-by: Wolfgang Denk <wd@denx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc8xx/fec.c')
-rw-r--r-- | arch/powerpc/cpu/mpc8xx/fec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc8xx/fec.c b/arch/powerpc/cpu/mpc8xx/fec.c index 2e196033c2..ea4ab3a042 100644 --- a/arch/powerpc/cpu/mpc8xx/fec.c +++ b/arch/powerpc/cpu/mpc8xx/fec.c @@ -148,7 +148,7 @@ int fec_initialize(bd_t *bis) /* for FEC1 make sure that the name of the interface is the same as the old one for compatibility reasons */ if (i == 0) { - sprintf (dev->name, "FEC"); + strcpy(dev->name, "FEC"); } else { sprintf (dev->name, "FEC%d", ether_fcc_info[i].ether_index + 1); |