diff options
Diffstat (limited to 'drivers/atm/he.c')
| -rw-r--r-- | drivers/atm/he.c | 36 | 
1 files changed, 13 insertions, 23 deletions
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index b182c2f7d77..72b6960fa95 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c @@ -349,8 +349,8 @@ __find_vcc(struct he_dev *he_dev, unsigned cid)  	return NULL;  } -static int __devinit -he_init_one(struct pci_dev *pci_dev, const struct pci_device_id *pci_ent) +static int he_init_one(struct pci_dev *pci_dev, +		       const struct pci_device_id *pci_ent)  {  	struct atm_dev *atm_dev = NULL;  	struct he_dev *he_dev = NULL; @@ -406,8 +406,7 @@ init_one_failure:  	return err;  } -static void __devexit -he_remove_one (struct pci_dev *pci_dev) +static void he_remove_one(struct pci_dev *pci_dev)  {  	struct atm_dev *atm_dev;  	struct he_dev *he_dev; @@ -445,8 +444,7 @@ rate_to_atmf(unsigned rate)		/* cps to atm forum format */  	return (NONZERO | (exp << 9) | (rate & 0x1ff));  } -static void __devinit -he_init_rx_lbfp0(struct he_dev *he_dev) +static void he_init_rx_lbfp0(struct he_dev *he_dev)  {  	unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count;  	unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; @@ -476,8 +474,7 @@ he_init_rx_lbfp0(struct he_dev *he_dev)  	he_writel(he_dev, he_dev->r0_numbuffs, RLBF0_C);  } -static void __devinit -he_init_rx_lbfp1(struct he_dev *he_dev) +static void he_init_rx_lbfp1(struct he_dev *he_dev)  {  	unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count;  	unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; @@ -507,8 +504,7 @@ he_init_rx_lbfp1(struct he_dev *he_dev)  	he_writel(he_dev, he_dev->r1_numbuffs, RLBF1_C);  } -static void __devinit -he_init_tx_lbfp(struct he_dev *he_dev) +static void he_init_tx_lbfp(struct he_dev *he_dev)  {  	unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count;  	unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; @@ -537,8 +533,7 @@ he_init_tx_lbfp(struct he_dev *he_dev)  	he_writel(he_dev, lbufd_index - 1, TLBF_T);  } -static int __devinit -he_init_tpdrq(struct he_dev *he_dev) +static int he_init_tpdrq(struct he_dev *he_dev)  {  	he_dev->tpdrq_base = pci_alloc_consistent(he_dev->pci_dev,  		CONFIG_TPDRQ_SIZE * sizeof(struct he_tpdrq), &he_dev->tpdrq_phys); @@ -559,8 +554,7 @@ he_init_tpdrq(struct he_dev *he_dev)  	return 0;  } -static void __devinit -he_init_cs_block(struct he_dev *he_dev) +static void he_init_cs_block(struct he_dev *he_dev)  {  	unsigned clock, rate, delta;  	int reg; @@ -655,8 +649,7 @@ he_init_cs_block(struct he_dev *he_dev)  } -static int __devinit -he_init_cs_block_rcm(struct he_dev *he_dev) +static int he_init_cs_block_rcm(struct he_dev *he_dev)  {  	unsigned (*rategrid)[16][16];  	unsigned rate, delta; @@ -776,8 +769,7 @@ he_init_cs_block_rcm(struct he_dev *he_dev)  	return 0;  } -static int __devinit -he_init_group(struct he_dev *he_dev, int group) +static int he_init_group(struct he_dev *he_dev, int group)  {  	struct he_buff *heb, *next;  	dma_addr_t mapping; @@ -915,8 +907,7 @@ out_free_rbpl_table:  	return -ENOMEM;  } -static int __devinit -he_init_irq(struct he_dev *he_dev) +static int he_init_irq(struct he_dev *he_dev)  {  	int i; @@ -978,8 +969,7 @@ he_init_irq(struct he_dev *he_dev)  	return 0;  } -static int __devinit -he_start(struct atm_dev *dev) +static int he_start(struct atm_dev *dev)  {  	struct he_dev *he_dev;  	struct pci_dev *pci_dev; @@ -2879,7 +2869,7 @@ MODULE_DEVICE_TABLE(pci, he_pci_tbl);  static struct pci_driver he_driver = {  	.name =		"he",  	.probe =	he_init_one, -	.remove =	__devexit_p(he_remove_one), +	.remove =	he_remove_one,  	.id_table =	he_pci_tbl,  };  |