Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45483
b: refs/heads/master
c: 56fb5fe
h: refs/heads/master
i:
  45481: 5d556ec
  45479: 5978d0f
v: v3
  • Loading branch information
Michael Buesch authored and Linus Torvalds committed Jan 12, 2007
1 parent 7b55d95 commit 4d7f655
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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: 9863be598ed068613996af8da71d9fd976a0ab2d
refs/heads/master: 56fb5fe9f16f630e3ee663c47c5aff26ac424d05
2 changes: 1 addition & 1 deletion trunk/drivers/char/hw_random/amd-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ static void __exit mod_exit(void)
hwrng_unregister(&amd_rng);
}

subsys_initcall(mod_init);
module_init(mod_init);
module_exit(mod_exit);

MODULE_AUTHOR("The Linux Kernel team");
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/hw_random/geode-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ static void __exit mod_exit(void)
iounmap(mem);
}

subsys_initcall(mod_init);
module_init(mod_init);
module_exit(mod_exit);

MODULE_DESCRIPTION("H/W RNG driver for AMD Geode LX CPUs");
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/hw_random/intel-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ static void __exit mod_exit(void)
iounmap(mem);
}

subsys_initcall(mod_init);
module_init(mod_init);
module_exit(mod_exit);

MODULE_DESCRIPTION("H/W RNG driver for Intel chipsets");
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/hw_random/ixp4xx-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ static void __exit ixp4xx_rng_exit(void)
iounmap(rng_base);
}

subsys_initcall(ixp4xx_rng_init);
module_init(ixp4xx_rng_init);
module_exit(ixp4xx_rng_exit);

MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>");
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/hw_random/via-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ static void __exit mod_exit(void)
hwrng_unregister(&via_rng);
}

subsys_initcall(mod_init);
module_init(mod_init);
module_exit(mod_exit);

MODULE_DESCRIPTION("H/W RNG driver for VIA chipsets");
Expand Down

0 comments on commit 4d7f655

Please sign in to comment.