浏览代码

serial: samsung.c: mark s3c24xx_serial_remove as __devexit

Mark the remove function as __devexit so it gets eliminated in
CONFIG_HOTPLUG=n builds.  Saves ~100 bytes.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Acked-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Peter Korsgaard 16 年之前
父节点
当前提交
90ceb9644d

+ 1 - 1
drivers/serial/s3c2400.c

@@ -78,7 +78,7 @@ static int s3c2400_serial_probe(struct platform_device *dev)
 
 
 static struct platform_driver s3c2400_serial_drv = {
 static struct platform_driver s3c2400_serial_drv = {
 	.probe		= s3c2400_serial_probe,
 	.probe		= s3c2400_serial_probe,
-	.remove		= s3c24xx_serial_remove,
+	.remove		= __devexit_p(s3c24xx_serial_remove),
 	.driver		= {
 	.driver		= {
 		.name	= "s3c2400-uart",
 		.name	= "s3c2400-uart",
 		.owner	= THIS_MODULE,
 		.owner	= THIS_MODULE,

+ 1 - 1
drivers/serial/s3c2410.c

@@ -90,7 +90,7 @@ static int s3c2410_serial_probe(struct platform_device *dev)
 
 
 static struct platform_driver s3c2410_serial_drv = {
 static struct platform_driver s3c2410_serial_drv = {
 	.probe		= s3c2410_serial_probe,
 	.probe		= s3c2410_serial_probe,
-	.remove		= s3c24xx_serial_remove,
+	.remove		= __devexit_p(s3c24xx_serial_remove),
 	.driver		= {
 	.driver		= {
 		.name	= "s3c2410-uart",
 		.name	= "s3c2410-uart",
 		.owner	= THIS_MODULE,
 		.owner	= THIS_MODULE,

+ 1 - 1
drivers/serial/s3c2412.c

@@ -123,7 +123,7 @@ static int s3c2412_serial_probe(struct platform_device *dev)
 
 
 static struct platform_driver s3c2412_serial_drv = {
 static struct platform_driver s3c2412_serial_drv = {
 	.probe		= s3c2412_serial_probe,
 	.probe		= s3c2412_serial_probe,
-	.remove		= s3c24xx_serial_remove,
+	.remove		= __devexit_p(s3c24xx_serial_remove),
 	.driver		= {
 	.driver		= {
 		.name	= "s3c2412-uart",
 		.name	= "s3c2412-uart",
 		.owner	= THIS_MODULE,
 		.owner	= THIS_MODULE,

+ 1 - 1
drivers/serial/s3c2440.c

@@ -153,7 +153,7 @@ static int s3c2440_serial_probe(struct platform_device *dev)
 
 
 static struct platform_driver s3c2440_serial_drv = {
 static struct platform_driver s3c2440_serial_drv = {
 	.probe		= s3c2440_serial_probe,
 	.probe		= s3c2440_serial_probe,
-	.remove		= s3c24xx_serial_remove,
+	.remove		= __devexit_p(s3c24xx_serial_remove),
 	.driver		= {
 	.driver		= {
 		.name	= "s3c2440-uart",
 		.name	= "s3c2440-uart",
 		.owner	= THIS_MODULE,
 		.owner	= THIS_MODULE,

+ 1 - 1
drivers/serial/s3c24a0.c

@@ -94,7 +94,7 @@ static int s3c24a0_serial_probe(struct platform_device *dev)
 
 
 static struct platform_driver s3c24a0_serial_drv = {
 static struct platform_driver s3c24a0_serial_drv = {
 	.probe		= s3c24a0_serial_probe,
 	.probe		= s3c24a0_serial_probe,
-	.remove		= s3c24xx_serial_remove,
+	.remove		= __devexit_p(s3c24xx_serial_remove),
 	.driver		= {
 	.driver		= {
 		.name	= "s3c24a0-uart",
 		.name	= "s3c24a0-uart",
 		.owner	= THIS_MODULE,
 		.owner	= THIS_MODULE,

+ 1 - 1
drivers/serial/s3c6400.c

@@ -124,7 +124,7 @@ static int s3c6400_serial_probe(struct platform_device *dev)
 
 
 static struct platform_driver s3c6400_serial_drv = {
 static struct platform_driver s3c6400_serial_drv = {
 	.probe		= s3c6400_serial_probe,
 	.probe		= s3c6400_serial_probe,
-	.remove		= s3c24xx_serial_remove,
+	.remove		= __devexit_p(s3c24xx_serial_remove),
 	.driver		= {
 	.driver		= {
 		.name	= "s3c6400-uart",
 		.name	= "s3c6400-uart",
 		.owner	= THIS_MODULE,
 		.owner	= THIS_MODULE,

+ 1 - 1
drivers/serial/samsung.c

@@ -1174,7 +1174,7 @@ int s3c24xx_serial_probe(struct platform_device *dev,
 
 
 EXPORT_SYMBOL_GPL(s3c24xx_serial_probe);
 EXPORT_SYMBOL_GPL(s3c24xx_serial_probe);
 
 
-int s3c24xx_serial_remove(struct platform_device *dev)
+int __devexit s3c24xx_serial_remove(struct platform_device *dev)
 {
 {
 	struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
 	struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
 
 

+ 1 - 1
drivers/serial/samsung.h

@@ -72,7 +72,7 @@ struct s3c24xx_uart_port {
 extern int s3c24xx_serial_probe(struct platform_device *dev,
 extern int s3c24xx_serial_probe(struct platform_device *dev,
 				struct s3c24xx_uart_info *uart);
 				struct s3c24xx_uart_info *uart);
 
 
-extern int s3c24xx_serial_remove(struct platform_device *dev);
+extern int __devexit s3c24xx_serial_remove(struct platform_device *dev);
 
 
 extern int s3c24xx_serial_initconsole(struct platform_driver *drv,
 extern int s3c24xx_serial_initconsole(struct platform_driver *drv,
 				      struct s3c24xx_uart_info *uart);
 				      struct s3c24xx_uart_info *uart);