patch-2.4.21 linux-2.4.21/drivers/atm/suni.c
Next file: linux-2.4.21/drivers/atm/suni.h
Previous file: linux-2.4.21/drivers/atm/nicstar.c
Back to the patch index
Back to the overall index
- Lines: 59
- Date:
2003-06-13 07:51:32.000000000 -0700
- Orig file:
linux-2.4.20/drivers/atm/suni.c
- Orig date:
2001-11-13 09:19:41.000000000 -0800
diff -urN linux-2.4.20/drivers/atm/suni.c linux-2.4.21/drivers/atm/suni.c
@@ -233,8 +233,6 @@
if (!(PRIV(dev) = kmalloc(sizeof(struct suni_priv),GFP_KERNEL)))
return -ENOMEM;
- MOD_INC_USE_COUNT;
-
PRIV(dev)->dev = dev;
spin_lock_irqsave(&sunis_lock,flags);
first = !sunis;
@@ -280,7 +278,6 @@
spin_unlock_irqrestore(&sunis_lock,flags);
kfree(PRIV(dev));
- MOD_DEC_USE_COUNT;
return 0;
}
@@ -293,14 +290,14 @@
};
-int __init suni_init(struct atm_dev *dev)
+int suni_init(struct atm_dev *dev)
{
unsigned char mri;
mri = GET(MRI); /* reset SUNI */
PUT(mri | SUNI_MRI_RESET,MRI);
PUT(mri,MRI);
- PUT(0,MT); /* disable all tests */
+ PUT((GET(MT) & SUNI_MT_DS27_53),MT); /* disable all tests */
REG_CHANGE(SUNI_TPOP_APM_S,SUNI_TPOP_APM_S_SHIFT,SUNI_TPOP_S_SONET,
TPOP_APM); /* use SONET */
REG_CHANGE(SUNI_TACP_IUCHP_CLP,0,SUNI_TACP_IUCHP_CLP,
@@ -310,24 +307,6 @@
return 0;
}
-
EXPORT_SYMBOL(suni_init);
-
MODULE_LICENSE("GPL");
-
-#ifdef MODULE
-
-
-int init_module(void)
-{
- return 0;
-}
-
-
-void cleanup_module(void)
-{
- /* Nay */
-}
-
-#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)