fix switch_driver to avoid segfaults
SVN-Revision: 8071
This commit is contained in:
parent
c452e6058a
commit
ae7bf3d0f0
1 changed files with 6 additions and 6 deletions
|
@ -554,7 +554,7 @@ static int __init adm5120_sw_init(void)
|
||||||
adm5120_set_reg(ADM5120_RECEIVE_HBADDR, KSEG1ADDR(adm5120_dma_rxh));
|
adm5120_set_reg(ADM5120_RECEIVE_HBADDR, KSEG1ADDR(adm5120_dma_rxh));
|
||||||
adm5120_set_reg(ADM5120_RECEIVE_LBADDR, KSEG1ADDR(adm5120_dma_rxl));
|
adm5120_set_reg(ADM5120_RECEIVE_LBADDR, KSEG1ADDR(adm5120_dma_rxl));
|
||||||
|
|
||||||
for (i=0; i<adm5120_nrdevs; i++) {
|
for (i = 0; i < SW_DEVS; i++) {
|
||||||
adm5120_devs[i] = alloc_etherdev(sizeof(struct adm5120_sw));
|
adm5120_devs[i] = alloc_etherdev(sizeof(struct adm5120_sw));
|
||||||
if (!adm5120_devs[i]) {
|
if (!adm5120_devs[i]) {
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
|
@ -612,9 +612,9 @@ static void __exit adm5120_sw_exit(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < adm5120_nrdevs; i++) {
|
for (i = 0; i < SW_DEVS; i++) {
|
||||||
unregister_netdev(adm5120_devs[i]);
|
unregister_netdev(adm5120_devs[i]);
|
||||||
free_netdev(adm5120_devs[i-1]);
|
free_netdev(adm5120_devs[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
free_irq(ADM5120_IRQ_SWITCH, NULL);
|
free_irq(ADM5120_IRQ_SWITCH, NULL);
|
||||||
|
|
Loading…
Reference in a new issue