Commit b7a69129 authored by Scott Wood's avatar Scott Wood Committed by Paul Mackerras

[POWERPC] fsl_soc: Make mac_addr const in fs_enet_of_init().

of_get_mac_address() returns a const pointer, so the result
should be stored in a const pointer.
Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 517e2263
...@@ -907,7 +907,7 @@ static int __init fs_enet_of_init(void) ...@@ -907,7 +907,7 @@ static int __init fs_enet_of_init(void)
struct fs_platform_info fs_enet_data; struct fs_platform_info fs_enet_data;
const unsigned int *id; const unsigned int *id;
const unsigned int *phy_addr; const unsigned int *phy_addr;
void *mac_addr; const void *mac_addr;
const phandle *ph; const phandle *ph;
const char *model; const char *model;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment