diff options
Diffstat (limited to 'drivers/hwmon/vt8231.c')
| -rw-r--r-- | drivers/hwmon/vt8231.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/drivers/hwmon/vt8231.c b/drivers/hwmon/vt8231.c index 84e3dc5e3a83..a56355cef184 100644 --- a/drivers/hwmon/vt8231.c +++ b/drivers/hwmon/vt8231.c @@ -176,7 +176,7 @@ struct vt8231_data {  static struct pci_dev *s_bridge;  static int vt8231_probe(struct platform_device *pdev); -static int __devexit vt8231_remove(struct platform_device *pdev); +static int vt8231_remove(struct platform_device *pdev);  static struct vt8231_data *vt8231_update_device(struct device *dev);  static void vt8231_init_device(struct vt8231_data *data); @@ -762,7 +762,7 @@ static struct platform_driver vt8231_driver = {  		.name	= "vt8231",  	},  	.probe	= vt8231_probe, -	.remove	= __devexit_p(vt8231_remove), +	.remove	= vt8231_remove,  };  static DEFINE_PCI_DEVICE_TABLE(vt8231_pci_ids) = { @@ -772,7 +772,7 @@ static DEFINE_PCI_DEVICE_TABLE(vt8231_pci_ids) = {  MODULE_DEVICE_TABLE(pci, vt8231_pci_ids); -static int __devinit vt8231_pci_probe(struct pci_dev *dev, +static int vt8231_pci_probe(struct pci_dev *dev,  				      const struct pci_device_id *id);  static struct pci_driver vt8231_pci_driver = { @@ -851,7 +851,7 @@ exit_remove_files:  	return err;  } -static int __devexit vt8231_remove(struct platform_device *pdev) +static int vt8231_remove(struct platform_device *pdev)  {  	struct vt8231_data *data = platform_get_drvdata(pdev);  	int i; @@ -943,7 +943,7 @@ static struct vt8231_data *vt8231_update_device(struct device *dev)  	return data;  } -static int __devinit vt8231_device_add(unsigned short address) +static int vt8231_device_add(unsigned short address)  {  	struct resource res = {  		.start	= address, @@ -984,7 +984,7 @@ exit:  	return err;  } -static int __devinit vt8231_pci_probe(struct pci_dev *dev, +static int vt8231_pci_probe(struct pci_dev *dev,  				const struct pci_device_id *id)  {  	u16 address, val; |