dsa: Export functions from core to modules
Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
cf50dcc24f
Коммит
ad293b8a21
|
@ -29,6 +29,7 @@ void register_switch_driver(struct dsa_switch_driver *drv)
|
|||
list_add_tail(&drv->list, &dsa_switch_drivers);
|
||||
mutex_unlock(&dsa_switch_drivers_mutex);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(register_switch_driver);
|
||||
|
||||
void unregister_switch_driver(struct dsa_switch_driver *drv)
|
||||
{
|
||||
|
@ -36,6 +37,7 @@ void unregister_switch_driver(struct dsa_switch_driver *drv)
|
|||
list_del_init(&drv->list);
|
||||
mutex_unlock(&dsa_switch_drivers_mutex);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(unregister_switch_driver);
|
||||
|
||||
static struct dsa_switch_driver *
|
||||
dsa_switch_probe(struct mii_bus *bus, int sw_addr, char **_name)
|
||||
|
|
|
@ -45,6 +45,7 @@ void dsa_slave_mii_bus_init(struct dsa_switch *ds)
|
|||
ds->master_mii_bus->id, ds->pd->sw_addr);
|
||||
ds->slave_mii_bus->parent = &ds->master_mii_bus->dev;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(dsa_slave_mii_bus_init);
|
||||
|
||||
|
||||
/* slave device handling ****************************************************/
|
||||
|
@ -402,3 +403,4 @@ dsa_slave_create(struct dsa_switch *ds, struct device *parent,
|
|||
|
||||
return slave_dev;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(dsa_slave_create);
|
||||
|
|
Загрузка…
Ссылка в новой задаче