Skip to content

Commit

Permalink
olpc_battery: Fix section mismatch noise
Browse files Browse the repository at this point in the history
This patch fixes the following noise (by renaming _drv to _driver):

WARNING: drivers/power/olpc_battery.o(.data+0x100): Section mismatch in reference from the variable olpc_battery_drv to the function .devinit.text:olpc_battery_probe()
The variable olpc_battery_drv references
the function __devinit olpc_battery_probe()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*driver, *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console

WARNING: drivers/power/olpc_battery.o(.data+0x104): Section mismatch in reference from the variable olpc_battery_drv to the function .devexit.text:olpc_battery_remove()
The variable olpc_battery_drv references
the function __devexit olpc_battery_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

WARNING: drivers/power/olpc_battery.o(.data+0x128): Section mismatch in reference from the variable olpc_battery_drv to the variable .devinit.rodata:olpc_battery_ids
The variable olpc_battery_drv references
the variable __devinitconst olpc_battery_ids
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*driver, *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console

Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
  • Loading branch information
Anton Vorontsov committed Nov 24, 2011
1 parent 6c75ea1 commit 5519d00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/power/olpc_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ static const struct of_device_id olpc_battery_ids[] __devinitconst = {
};
MODULE_DEVICE_TABLE(of, olpc_battery_ids);

static struct platform_driver olpc_battery_drv = {
static struct platform_driver olpc_battery_driver = {
.driver = {
.name = "olpc-battery",
.owner = THIS_MODULE,
Expand All @@ -640,13 +640,13 @@ static struct platform_driver olpc_battery_drv = {

static int __init olpc_bat_init(void)
{
return platform_driver_register(&olpc_battery_drv);
return platform_driver_register(&olpc_battery_driver);
}
module_init(olpc_bat_init);

static void __exit olpc_bat_exit(void)
{
platform_driver_unregister(&olpc_battery_drv);
platform_driver_unregister(&olpc_battery_driver);
}
module_exit(olpc_bat_exit);

Expand Down

0 comments on commit 5519d00

Please sign in to comment.