summaryrefslogtreecommitdiffstats
path: root/drivers/net/at91_emac.c
diff options
context:
space:
mode:
authorBen Warren <biggerbadderben@gmail.com>2010-07-29 12:56:11 -0700
committerBen Warren <biggerbadderben@gmail.com>2010-08-09 11:52:30 -0700
commitd7fb9bcfb29a1cbdbda7006658e76c2d9da0f66f (patch)
tree3924a01a2169dffd939ca571be2ac66855b154b3 /drivers/net/at91_emac.c
parentede16ea32da7a37f892bf63dcb43c16118ba39d6 (diff)
downloadtalos-obmc-uboot-d7fb9bcfb29a1cbdbda7006658e76c2d9da0f66f.tar.gz
talos-obmc-uboot-d7fb9bcfb29a1cbdbda7006658e76c2d9da0f66f.zip
Fix compile warnings for const correctness
Commit 6e37b1a3a25004d3df5867de49fff6b3fc9c4f04 modifies several net calls to take a (const char *) parameter instead of (char *), but in some cases the modified functions call other functions taking (char *). The end result is warnings about discarding the const qualifier. This patch fixes these other function signatures. Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'drivers/net/at91_emac.c')
-rw-r--r--drivers/net/at91_emac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/at91_emac.c b/drivers/net/at91_emac.c
index 0912f52822..d82459b1ce 100644
--- a/drivers/net/at91_emac.c
+++ b/drivers/net/at91_emac.c
@@ -162,7 +162,7 @@ int at91emac_write(at91_emac_t *at91mac, unsigned char addr,
#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
-at91_emac_t *get_emacbase_by_name(char *devname)
+at91_emac_t *get_emacbase_by_name(const char *devname)
{
struct eth_device *netdev;
OpenPOWER on IntegriCloud