Add the relevant __devinit and __devexit attributes to the rtc-s3c driver. Signed-off-by: Ben Dooks Index: linux-2.6.26-quilt3/drivers/rtc/rtc-s3c.c =================================================================== --- linux-2.6.26-quilt3.orig/drivers/rtc/rtc-s3c.c 2008-07-20 17:08:20.000000000 +0100 +++ linux-2.6.26-quilt3/drivers/rtc/rtc-s3c.c 2008-07-20 17:09:00.000000000 +0100 @@ -383,7 +383,7 @@ static void s3c_rtc_enable(struct platfo } } -static int s3c_rtc_remove(struct platform_device *dev) +static int __devexit s3c_rtc_remove(struct platform_device *dev) { struct rtc_device *rtc = platform_get_drvdata(dev); @@ -400,7 +400,7 @@ static int s3c_rtc_remove(struct platfor return 0; } -static int s3c_rtc_probe(struct platform_device *pdev) +static int __devinit s3c_rtc_probe(struct platform_device *pdev) { struct rtc_device *rtc; struct resource *res; @@ -513,7 +513,7 @@ static int s3c_rtc_resume(struct platfor static struct platform_driver s3c2410_rtcdrv = { .probe = s3c_rtc_probe, - .remove = s3c_rtc_remove, + .remove = __devexit_p(s3c_rtc_remove), .suspend = s3c_rtc_suspend, .resume = s3c_rtc_resume, .driver = { -- Ben (ben@fluff.org, http://www.fluff.org/) 'a smiley only costs 4 bytes' -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/