mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
ARM: orion: fix orion_ge00_switch_board_info initialization
A section type mismatch warning shows up when building with LTO, since orion_ge00_mvmdio_bus_name was put in __initconst but not marked const itself: include/linux/of.h: In function 'spear_setup_of_timer': arch/arm/mach-spear/time.c:207:34: error: 'timer_of_match' causes a section type conflict with 'orion_ge00_mvmdio_bus_name' static const struct of_device_id timer_of_match[] __initconst = { ^ arch/arm/plat-orion/common.c:475:32: note: 'orion_ge00_mvmdio_bus_name' was declared here static __initconst const char *orion_ge00_mvmdio_bus_name = "orion-mii"; ^ As pointed out by Andrew Lunn, it should in fact be 'const' but not '__initconst' because the string is never copied but may be accessed after the init sections are freed. To fix that, I get rid of the extra symbol and rewrite the initialization in a simpler way that assigns both the bus_id and modalias statically. I spotted another theoretical bug in the same place, where d->netdev[i] may be an out of bounds access, this can be fixed by moving the device assignment into the loop. Cc: stable@vger.kernel.org Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
parent
e6d210180a
commit
8337d08350
1 changed files with 11 additions and 12 deletions
|
@ -472,28 +472,27 @@ void __init orion_ge11_init(struct mv643xx_eth_platform_data *eth_data,
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* Ethernet switch
|
* Ethernet switch
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
static __initconst const char *orion_ge00_mvmdio_bus_name = "orion-mii";
|
static __initdata struct mdio_board_info orion_ge00_switch_board_info = {
|
||||||
static __initdata struct mdio_board_info
|
.bus_id = "orion-mii",
|
||||||
orion_ge00_switch_board_info;
|
.modalias = "mv88e6085",
|
||||||
|
};
|
||||||
|
|
||||||
void __init orion_ge00_switch_init(struct dsa_chip_data *d)
|
void __init orion_ge00_switch_init(struct dsa_chip_data *d)
|
||||||
{
|
{
|
||||||
struct mdio_board_info *bd;
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
if (!IS_BUILTIN(CONFIG_PHYLIB))
|
if (!IS_BUILTIN(CONFIG_PHYLIB))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(d->port_names); i++)
|
for (i = 0; i < ARRAY_SIZE(d->port_names); i++) {
|
||||||
if (!strcmp(d->port_names[i], "cpu"))
|
if (!strcmp(d->port_names[i], "cpu")) {
|
||||||
|
d->netdev[i] = &orion_ge00.dev;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bd = &orion_ge00_switch_board_info;
|
orion_ge00_switch_board_info.mdio_addr = d->sw_addr;
|
||||||
bd->bus_id = orion_ge00_mvmdio_bus_name;
|
orion_ge00_switch_board_info.platform_data = d;
|
||||||
bd->mdio_addr = d->sw_addr;
|
|
||||||
d->netdev[i] = &orion_ge00.dev;
|
|
||||||
strcpy(bd->modalias, "mv88e6085");
|
|
||||||
bd->platform_data = d;
|
|
||||||
|
|
||||||
mdiobus_register_board_info(&orion_ge00_switch_board_info, 1);
|
mdiobus_register_board_info(&orion_ge00_switch_board_info, 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue