Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 295163
b: refs/heads/master
c: 81ce686
h: refs/heads/master
i:
  295161: 17d1b65
  295159: ecf11c6
v: v3
  • Loading branch information
Axel Lin authored and Linus Torvalds committed Mar 23, 2012
1 parent 8697139 commit 6c7aec5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 35 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: 7d1ae8a8542dfc5f7eff51f9247bbd69244e9f88
refs/heads/master: 81ce6864444facc95ba7fe25575153425106c985
12 changes: 1 addition & 11 deletions trunk/drivers/video/backlight/adp8860_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -819,17 +819,7 @@ static struct i2c_driver adp8860_driver = {
.id_table = adp8860_id,
};

static int __init adp8860_init(void)
{
return i2c_add_driver(&adp8860_driver);
}
module_init(adp8860_init);

static void __exit adp8860_exit(void)
{
i2c_del_driver(&adp8860_driver);
}
module_exit(adp8860_exit);
module_i2c_driver(adp8860_driver);

MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/video/backlight/adp8870_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -991,17 +991,7 @@ static struct i2c_driver adp8870_driver = {
.id_table = adp8870_id,
};

static int __init adp8870_init(void)
{
return i2c_add_driver(&adp8870_driver);
}
module_init(adp8870_init);

static void __exit adp8870_exit(void)
{
i2c_del_driver(&adp8870_driver);
}
module_exit(adp8870_exit);
module_i2c_driver(adp8870_driver);

MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/video/backlight/tosa_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,18 +181,7 @@ static struct i2c_driver tosa_bl_driver = {
.id_table = tosa_bl_id,
};

static int __init tosa_bl_init(void)
{
return i2c_add_driver(&tosa_bl_driver);
}

static void __exit tosa_bl_exit(void)
{
i2c_del_driver(&tosa_bl_driver);
}

module_init(tosa_bl_init);
module_exit(tosa_bl_exit);
module_i2c_driver(tosa_bl_driver);

MODULE_AUTHOR("Dmitry Baryshkov");
MODULE_LICENSE("GPL v2");
Expand Down

0 comments on commit 6c7aec5

Please sign in to comment.