]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
Fix compile warnings for const correctness
authorBen Warren <biggerbadderben@gmail.com>
Thu, 29 Jul 2010 19:56:11 +0000 (12:56 -0700)
committerBen Warren <biggerbadderben@gmail.com>
Mon, 9 Aug 2010 18:52:30 +0000 (11:52 -0700)
commitd7fb9bcfb29a1cbdbda7006658e76c2d9da0f66f
tree3924a01a2169dffd939ca571be2ac66855b154b3
parentede16ea32da7a37f892bf63dcb43c16118ba39d6
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>
drivers/net/at91_emac.c
drivers/net/eepro100.c
drivers/net/phy/miiphybb.c
include/net.h
net/eth.c