diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-06-22 13:42:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-22 14:32:24 -0400 |
commit | 90ceb9644d7cdec00a90255473359a7e2bb537a9 (patch) | |
tree | ac1539fb98f5efd2a7ba18515bb53f9eb86d2b2e /drivers/serial/samsung.c | |
parent | 099d5270897606473d63091afcc63f53ee1894bc (diff) |
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>
Diffstat (limited to 'drivers/serial/samsung.c')
-rw-r--r-- | drivers/serial/samsung.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/samsung.c b/drivers/serial/samsung.c index 93b5d75db126..c8851a0db63a 100644 --- a/drivers/serial/samsung.c +++ b/drivers/serial/samsung.c | |||
@@ -1174,7 +1174,7 @@ int s3c24xx_serial_probe(struct platform_device *dev, | |||
1174 | 1174 | ||
1175 | EXPORT_SYMBOL_GPL(s3c24xx_serial_probe); | 1175 | EXPORT_SYMBOL_GPL(s3c24xx_serial_probe); |
1176 | 1176 | ||
1177 | int s3c24xx_serial_remove(struct platform_device *dev) | 1177 | int __devexit s3c24xx_serial_remove(struct platform_device *dev) |
1178 | { | 1178 | { |
1179 | struct uart_port *port = s3c24xx_dev_to_port(&dev->dev); | 1179 | struct uart_port *port = s3c24xx_dev_to_port(&dev->dev); |
1180 | 1180 | ||