Skip to content

Commit

Permalink
ARM: S3C64XX: serial: Fix section mismatch warning
Browse files Browse the repository at this point in the history
Rename the structure to avoid the following warning:

WARNING: vmlinux.o(.data+0x11ef4): Section mismatch in reference from the variable
s3c6400_serial_drv to the function .devexit.text:s3c24xx_serial_remove()
The variable s3c6400_serial_drv references
the function __devexit s3c24xx_serial_remove()
If the reference is valid then annotate the
variable with __exit* (see linux/init.h) or name the variable:
*driver, *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console,

Signed-off-by: Ramax Lo <ramaxlo@gmail.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
  • Loading branch information
Ramax Lo authored and Ben Dooks committed Jul 30, 2009
1 parent 8fe70a5 commit 909db80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/serial/s3c6400.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ static int s3c6400_serial_probe(struct platform_device *dev)
return s3c24xx_serial_probe(dev, &s3c6400_uart_inf);
}

static struct platform_driver s3c6400_serial_drv = {
static struct platform_driver s3c6400_serial_driver = {
.probe = s3c6400_serial_probe,
.remove = __devexit_p(s3c24xx_serial_remove),
.driver = {
Expand All @@ -131,16 +131,16 @@ static struct platform_driver s3c6400_serial_drv = {
},
};

s3c24xx_console_init(&s3c6400_serial_drv, &s3c6400_uart_inf);
s3c24xx_console_init(&s3c6400_serial_driver, &s3c6400_uart_inf);

static int __init s3c6400_serial_init(void)
{
return s3c24xx_serial_init(&s3c6400_serial_drv, &s3c6400_uart_inf);
return s3c24xx_serial_init(&s3c6400_serial_driver, &s3c6400_uart_inf);
}

static void __exit s3c6400_serial_exit(void)
{
platform_driver_unregister(&s3c6400_serial_drv);
platform_driver_unregister(&s3c6400_serial_driver);
}

module_init(s3c6400_serial_init);
Expand Down

0 comments on commit 909db80

Please sign in to comment.