forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michael Buesch <[email protected]> Cc: Jeff Garzik <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Michael Buesch
authored and
Linus Torvalds
committed
Jun 26, 2006
1 parent
59f5d35
commit 844dd05
Showing
7 changed files
with
438 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1118,6 +1118,11 @@ L: [email protected] | |
W: http://www.lm-sensors.nu/ | ||
S: Maintained | ||
|
||
HARDWARE RANDOM NUMBER GENERATOR CORE | ||
P: Michael Buesch | ||
M: [email protected] | ||
S: Maintained | ||
|
||
HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER | ||
P: Robert Love | ||
M: [email protected] | ||
|
@@ -1436,6 +1441,11 @@ P: Tigran Aivazian | |
M: [email protected] | ||
S: Maintained | ||
|
||
INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT | ||
P: Deepak Saxena | ||
M: [email protected] | ||
S: Maintained | ||
|
||
INTEL PRO/100 ETHERNET SUPPORT | ||
P: John Ronciak | ||
M: [email protected] | ||
|
@@ -2725,6 +2735,11 @@ P: Christoph Hellwig | |
M: [email protected] | ||
S: Maintained | ||
|
||
TI OMAP RANDOM NUMBER GENERATOR SUPPORT | ||
P: Deepak Saxena | ||
M: [email protected] | ||
S: Maintained | ||
|
||
TI PARALLEL LINK CABLE DRIVER | ||
P: Romain Lievin | ||
M: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# Hardware Random Number Generator (RNG) configuration | ||
# | ||
|
||
config HW_RANDOM | ||
bool "Hardware Random Number Generator Core support" | ||
default y | ||
---help--- | ||
Hardware Random Number Generator Core infrastructure. | ||
|
||
If unsure, say Y. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# | ||
# Makefile for HW Random Number Generator (RNG) device drivers. | ||
# | ||
|
||
obj-$(CONFIG_HW_RANDOM) += core.o |
Oops, something went wrong.