Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 114795
b: refs/heads/master
c: 673c0c0
h: refs/heads/master
i:
  114793: 1e520c7
  114791: 1174212
v: v3
  • Loading branch information
David Brownell authored and Linus Torvalds committed Oct 16, 2008
1 parent 7366955 commit 9b38766
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 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: 2bec19feabd53cba75e9dab0e79afbe868a37113
refs/heads/master: 673c0c00382ed807f09d94e806f3519ddeeb4f70
6 changes: 4 additions & 2 deletions trunk/drivers/gpio/max7301.c
Original file line number Diff line number Diff line change
Expand Up @@ -325,13 +325,15 @@ static int __init max7301_init(void)
{
return spi_register_driver(&max7301_driver);
}
/* register after spi postcore initcall and before
* subsys initcalls that may rely on these GPIOs
*/
subsys_initcall(max7301_init);

static void __exit max7301_exit(void)
{
spi_unregister_driver(&max7301_driver);
}

module_init(max7301_init);
module_exit(max7301_exit);

MODULE_AUTHOR("Juergen Beisert");
Expand Down
5 changes: 4 additions & 1 deletion trunk/drivers/gpio/mcp23s08.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,10 @@ static int __init mcp23s08_init(void)
{
return spi_register_driver(&mcp23s08_driver);
}
module_init(mcp23s08_init);
/* register after spi postcore initcall and before
* subsys initcalls that may rely on these GPIOs
*/
subsys_initcall(mcp23s08_init);

static void __exit mcp23s08_exit(void)
{
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/spi/spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,5 +738,5 @@ static int __init spi_init(void)
* driver registration) _could_ be dynamically linked (modular) ... costs
* include needing to have boardinfo data structures be much more public.
*/
subsys_initcall(spi_init);
postcore_initcall(spi_init);

0 comments on commit 9b38766

Please sign in to comment.