diff options
Diffstat (limited to 'drivers/net/ethernet/sun/sunqe.c')
| -rw-r--r-- | drivers/net/ethernet/sun/sunqe.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/ethernet/sun/sunqe.c b/drivers/net/ethernet/sun/sunqe.c index aeded7ff1c8..1dcee691584 100644 --- a/drivers/net/ethernet/sun/sunqe.c +++ b/drivers/net/ethernet/sun/sunqe.c @@ -744,7 +744,7 @@ static void qec_init_once(struct sunqec *qecp, struct platform_device *op)  		    qecp->gregs + GLOB_RSIZE);  } -static u8 __devinit qec_get_burst(struct device_node *dp) +static u8 qec_get_burst(struct device_node *dp)  {  	u8 bsizes, bsizes_more; @@ -764,7 +764,7 @@ static u8 __devinit qec_get_burst(struct device_node *dp)  	return bsizes;  } -static struct sunqec * __devinit get_qec(struct platform_device *child) +static struct sunqec *get_qec(struct platform_device *child)  {  	struct platform_device *op = to_platform_device(child->dev.parent);  	struct sunqec *qecp; @@ -830,7 +830,7 @@ static const struct net_device_ops qec_ops = {  	.ndo_validate_addr	= eth_validate_addr,  }; -static int __devinit qec_ether_init(struct platform_device *op) +static int qec_ether_init(struct platform_device *op)  {  	static unsigned version_printed;  	struct net_device *dev; @@ -929,12 +929,12 @@ fail:  	return res;  } -static int __devinit qec_sbus_probe(struct platform_device *op) +static int qec_sbus_probe(struct platform_device *op)  {  	return qec_ether_init(op);  } -static int __devexit qec_sbus_remove(struct platform_device *op) +static int qec_sbus_remove(struct platform_device *op)  {  	struct sunqe *qp = dev_get_drvdata(&op->dev);  	struct net_device *net_dev = qp->dev; @@ -971,7 +971,7 @@ static struct platform_driver qec_sbus_driver = {  		.of_match_table = qec_sbus_match,  	},  	.probe		= qec_sbus_probe, -	.remove		= __devexit_p(qec_sbus_remove), +	.remove		= qec_sbus_remove,  };  static int __init qec_init(void)  |