Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 114821
b: refs/heads/master
c: 2f8d119
h: refs/heads/master
i:
  114819: 3e45177
v: v3
  • Loading branch information
David Brownell authored and Linus Torvalds committed Oct 16, 2008
1 parent bebc24e commit 990bfa4
Show file tree
Hide file tree
Showing 4 changed files with 13 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: 3d599d1ca57f443e5c4ff5af1e69d90350082f77
refs/heads/master: 2f8d11971b9f54362437ce70f4d1911f0996d542
5 changes: 4 additions & 1 deletion trunk/drivers/gpio/max732x.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,10 @@ static int __init max732x_init(void)
{
return i2c_add_driver(&max732x_driver);
}
module_init(max732x_init);
/* register after i2c postcore initcall and before
* subsys initcalls that may rely on these GPIOs
*/
subsys_initcall(max732x_init);

static void __exit max732x_exit(void)
{
Expand Down
5 changes: 4 additions & 1 deletion trunk/drivers/gpio/pca953x.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,10 @@ static int __init pca953x_init(void)
{
return i2c_add_driver(&pca953x_driver);
}
module_init(pca953x_init);
/* register after i2c postcore initcall and before
* subsys initcalls that may rely on these GPIOs
*/
subsys_initcall(pca953x_init);

static void __exit pca953x_exit(void)
{
Expand Down
5 changes: 4 additions & 1 deletion trunk/drivers/gpio/pcf857x.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,10 @@ static int __init pcf857x_init(void)
{
return i2c_add_driver(&pcf857x_driver);
}
module_init(pcf857x_init);
/* register after i2c postcore initcall and before
* subsys initcalls that may rely on these GPIOs
*/
subsys_initcall(pcf857x_init);

static void __exit pcf857x_exit(void)
{
Expand Down

0 comments on commit 990bfa4

Please sign in to comment.