Commit 28ec7579 authored by Chas Williams's avatar Chas Williams Committed by David S. Miller

[ATM SUNI]: suni_init should not be __init and remove mod inc/dec.

parent 20291389
...@@ -233,8 +233,6 @@ static int suni_start(struct atm_dev *dev) ...@@ -233,8 +233,6 @@ static int suni_start(struct atm_dev *dev)
if (!(PRIV(dev) = kmalloc(sizeof(struct suni_priv),GFP_KERNEL))) if (!(PRIV(dev) = kmalloc(sizeof(struct suni_priv),GFP_KERNEL)))
return -ENOMEM; return -ENOMEM;
MOD_INC_USE_COUNT;
PRIV(dev)->dev = dev; PRIV(dev)->dev = dev;
spin_lock_irqsave(&sunis_lock,flags); spin_lock_irqsave(&sunis_lock,flags);
first = !sunis; first = !sunis;
...@@ -280,7 +278,6 @@ static int suni_stop(struct atm_dev *dev) ...@@ -280,7 +278,6 @@ static int suni_stop(struct atm_dev *dev)
spin_unlock_irqrestore(&sunis_lock,flags); spin_unlock_irqrestore(&sunis_lock,flags);
kfree(PRIV(dev)); kfree(PRIV(dev));
MOD_DEC_USE_COUNT;
return 0; return 0;
} }
...@@ -293,7 +290,7 @@ static const struct atmphy_ops suni_ops = { ...@@ -293,7 +290,7 @@ static const struct atmphy_ops suni_ops = {
}; };
int __init suni_init(struct atm_dev *dev) int suni_init(struct atm_dev *dev)
{ {
unsigned char mri; unsigned char mri;
......
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