aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2011-06-22 20:37:56 +0100
committerAndy Green <andy.green@linaro.org>2011-06-22 20:37:56 +0100
commit266eace3d2b04a164126f8056ceebdef6857be59 (patch)
tree4dedc7e23a3143f906127ba755f1b161fdfc7060 /arch
parent594211745d465e336d34abd92965b08896683cb5 (diff)
OMAP2+: PANDA: Clean up casting warning on MAC setting code
Clean up casting warning Signed-off-by: Andy Green <andy.green@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-omap2/board-omap4panda.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
index 73240bc89fa..a824b7b8f62 100644
--- a/arch/arm/mach-omap2/board-omap4panda.c
+++ b/arch/arm/mach-omap2/board-omap4panda.c
@@ -696,7 +696,7 @@ static const char * const panda_fixup_mac_device_paths[] = {
static int panda_device_path_need_mac(struct device *dev)
{
- const char **try = panda_fixup_mac_device_paths;
+ const char **try = (const char **)panda_fixup_mac_device_paths;
const char *path;
int count = ARRAY_SIZE(panda_fixup_mac_device_paths);
const char *p;