summaryrefslogtreecommitdiff
path: root/arch/mips
diff options
context:
space:
mode:
authorBen Whitten <[email protected]>2015-12-30 13:05:58 +0000
committerTom Rini <[email protected]>2016-01-14 22:11:34 -0500
commit192bc6948b02ff4168cab16162fffb507946dc2b (patch)
treeb49cf85a3fa910182ce7dc2508f00ccb8ade03d4 /arch/mips
parent4edde96111aefac63d6aaca6ba87a90d149e973e (diff)
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 <[email protected]> Acked-by: Wolfgang Denk <[email protected]> Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/mach-au1x00/au1x00_eth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mach-au1x00/au1x00_eth.c b/arch/mips/mach-au1x00/au1x00_eth.c
index d6ebe076434..3f9f91eb040 100644
--- a/arch/mips/mach-au1x00/au1x00_eth.c
+++ b/arch/mips/mach-au1x00/au1x00_eth.c
@@ -279,7 +279,7 @@ int au1x00_enet_initialize(bd_t *bis){
memset(dev, 0, sizeof *dev);
- sprintf(dev->name, "Au1X00 ethernet");
+ strcpy(dev->name, "Au1X00 ethernet");
dev->iobase = 0;
dev->priv = 0;
dev->init = au1x00_init;