pwm: remove use of __devexit
[deliverable/linux.git] / drivers / pwm / pwm-samsung.c
index 023a3bee76e7d04e9a76922d46c95addcf418086..e9b15d099c03cb87d668aa500d5752d18e471061 100644 (file)
@@ -273,7 +273,7 @@ static int s3c_pwm_probe(struct platform_device *pdev)
        return ret;
 }
 
-static int __devexit s3c_pwm_remove(struct platform_device *pdev)
+static int s3c_pwm_remove(struct platform_device *pdev)
 {
        struct s3c_chip *s3c = platform_get_drvdata(pdev);
        int err;
@@ -327,7 +327,7 @@ static struct platform_driver s3c_pwm_driver = {
                .owner  = THIS_MODULE,
        },
        .probe          = s3c_pwm_probe,
-       .remove         = __devexit_p(s3c_pwm_remove),
+       .remove         = s3c_pwm_remove,
        .suspend        = s3c_pwm_suspend,
        .resume         = s3c_pwm_resume,
 };
This page took 0.023562 seconds and 5 git commands to generate.