The patch titled
enable dual rng on VIA C7
has been removed from the -mm tree. Its filename was
enable-dual-rng-on-via-c7.patch
This patch was dropped because an updated version will be merged
------------------------------------------------------
Subject: enable dual rng on VIA C7
From: Udo van den Heuvel <[EMAIL PROTECTED]>
Cc: Michael Buesch <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/char/hw_random/via-rng.c | 2 ++
1 file changed, 2 insertions(+)
diff -puN drivers/char/hw_random/via-rng.c~enable-dual-rng-on-via-c7
drivers/char/hw_random/via-rng.c
--- a/drivers/char/hw_random/via-rng.c~enable-dual-rng-on-via-c7
+++ a/drivers/char/hw_random/via-rng.c
@@ -42,6 +42,7 @@ enum {
VIA_STRFILT_ENABLE = (1 << 14),
VIA_RAWBITS_ENABLE = (1 << 13),
VIA_RNG_ENABLE = (1 << 6),
+ VIA_RNG_DUAL = (1 << 9),
VIA_XSTORE_CNT_MASK = 0x0F,
VIA_RNG_CHUNK_8 = 0x00, /* 64 rand bits, 64 stored bits */
@@ -133,6 +134,7 @@ static int via_rng_init(struct hwrng *rn
lo &= ~(0x7f << VIA_STRFILT_CNT_SHIFT);
lo &= ~VIA_XSTORE_CNT_MASK;
lo &= ~(VIA_STRFILT_ENABLE | VIA_STRFILT_FAIL | VIA_RAWBITS_ENABLE);
+ lo |= VIA_RNG_DUAL;
lo |= VIA_RNG_ENABLE;
if (lo != old_lo)
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
enable-dual-rng-on-via-c7.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html