Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283431
b: refs/heads/master
c: 5519d00
h: refs/heads/master
i:
  283429: 4f046e7
  283427: f390eaf
  283423: 2747263
v: v3
  • Loading branch information
Anton Vorontsov committed Nov 24, 2011
1 parent 0ec4640 commit d8119e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6c75ea1e582d12120072cae742a0d63ea8ac8c65
refs/heads/master: 5519d00e6a5d99a163484722ef7cea8bff47bc58
6 changes: 3 additions & 3 deletions trunk/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 d8119e9

Please sign in to comment.