Skip to content

Commit

Permalink
[ATM]: net/atm/resources.c: remove __free_atm_dev
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Adrian Bunk authored and David S. Miller committed Apr 21, 2005
1 parent 29c4be5 commit ebc37b6
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions net/atm/resources.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ static struct atm_dev *__alloc_atm_dev(const char *type)
return dev;
}

static void __free_atm_dev(struct atm_dev *dev)
{
kfree(dev);
}

static struct atm_dev *__atm_dev_lookup(int number)
{
struct atm_dev *dev;
Expand Down Expand Up @@ -90,7 +85,7 @@ struct atm_dev *atm_dev_register(const char *type, const struct atmdev_ops *ops,
if ((inuse = __atm_dev_lookup(number))) {
atm_dev_put(inuse);
spin_unlock(&atm_dev_lock);
__free_atm_dev(dev);
kfree(dev);
return NULL;
}
dev->number = number;
Expand Down Expand Up @@ -119,7 +114,7 @@ struct atm_dev *atm_dev_register(const char *type, const struct atmdev_ops *ops,
spin_lock(&atm_dev_lock);
list_del(&dev->dev_list);
spin_unlock(&atm_dev_lock);
__free_atm_dev(dev);
kfree(dev);
return NULL;
}

Expand Down Expand Up @@ -148,7 +143,7 @@ void atm_dev_deregister(struct atm_dev *dev)
}
}

__free_atm_dev(dev);
kfree(dev);
}

void shutdown_atm_dev(struct atm_dev *dev)
Expand Down

0 comments on commit ebc37b6

Please sign in to comment.