summaryrefslogtreecommitdiffstats
path: root/board/freescale/corenet_ds
diff options
context:
space:
mode:
authorBen Whitten <ben.whitten@gmail.com>2015-12-30 13:05:58 +0000
committerTom Rini <trini@konsulko.com>2016-01-14 22:11:34 -0500
commit192bc6948b02ff4168cab16162fffb507946dc2b (patch)
treeb49cf85a3fa910182ce7dc2508f00ccb8ade03d4 /board/freescale/corenet_ds
parent4edde96111aefac63d6aaca6ba87a90d149e973e (diff)
downloadblackbird-obmc-uboot-192bc6948b02ff4168cab16162fffb507946dc2b.tar.gz
blackbird-obmc-uboot-192bc6948b02ff4168cab16162fffb507946dc2b.zip
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 'board/freescale/corenet_ds')
-rw-r--r--board/freescale/corenet_ds/eth_hydra.c2
-rw-r--r--board/freescale/corenet_ds/eth_superhydra.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/corenet_ds/eth_hydra.c b/board/freescale/corenet_ds/eth_hydra.c
index 172a55b988..55437e843d 100644
--- a/board/freescale/corenet_ds/eth_hydra.c
+++ b/board/freescale/corenet_ds/eth_hydra.c
@@ -170,7 +170,7 @@ static int hydra_mdio_init(char *realbusname, char *fakebusname)
bus->read = hydra_mdio_read;
bus->write = hydra_mdio_write;
bus->reset = hydra_mdio_reset;
- sprintf(bus->name, fakebusname);
+ strcpy(bus->name, fakebusname);
hmdio->realbus = miiphy_get_dev_by_name(realbusname);
diff --git a/board/freescale/corenet_ds/eth_superhydra.c b/board/freescale/corenet_ds/eth_superhydra.c
index 62b163580b..3f11f5f279 100644
--- a/board/freescale/corenet_ds/eth_superhydra.c
+++ b/board/freescale/corenet_ds/eth_superhydra.c
@@ -175,7 +175,7 @@ static int super_hydra_mdio_init(char *realbusname, char *fakebusname)
bus->read = super_hydra_mdio_read;
bus->write = super_hydra_mdio_write;
bus->reset = super_hydra_mdio_reset;
- sprintf(bus->name, fakebusname);
+ strcpy(bus->name, fakebusname);
hmdio->realbus = miiphy_get_dev_by_name(realbusname);
OpenPOWER on IntegriCloud