diff options
Diffstat (limited to 'drivers/hwmon/s3c-hwmon.c')
| -rw-r--r-- | drivers/hwmon/s3c-hwmon.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/s3c-hwmon.c b/drivers/hwmon/s3c-hwmon.c index bcecd025fcc..ff2ae0252a4 100644 --- a/drivers/hwmon/s3c-hwmon.c +++ b/drivers/hwmon/s3c-hwmon.c @@ -275,7 +275,7 @@ static void s3c_hwmon_remove_attr(struct device *dev,   * s3c_hwmon_probe - device probe entry.   * @dev: The device being probed.  */ -static int __devinit s3c_hwmon_probe(struct platform_device *dev) +static int s3c_hwmon_probe(struct platform_device *dev)  {  	struct s3c_hwmon_pdata *pdata = dev->dev.platform_data;  	struct s3c_hwmon *hwmon; @@ -364,7 +364,7 @@ static int __devinit s3c_hwmon_probe(struct platform_device *dev)  	return ret;  } -static int __devexit s3c_hwmon_remove(struct platform_device *dev) +static int s3c_hwmon_remove(struct platform_device *dev)  {  	struct s3c_hwmon *hwmon = platform_get_drvdata(dev);  	int i; @@ -386,7 +386,7 @@ static struct platform_driver s3c_hwmon_driver = {  		.owner		= THIS_MODULE,  	},  	.probe		= s3c_hwmon_probe, -	.remove		= __devexit_p(s3c_hwmon_remove), +	.remove		= s3c_hwmon_remove,  };  module_platform_driver(s3c_hwmon_driver);  |