aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2006-03-04 18:51:45 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-04 18:51:45 -0800
commit501f74f29498543c27f4f9697f5c1e980dd2de0d (patch)
treea73666df60eea38aaf0ee8f9a48adef5ae30e3e7
parentMerge master.kernel.org:/home/rmk/linux-2.6-mmc (diff)
parent[PATCH] Add missing ifdef for VIA RNG code (diff)
downloadlinux-dev-501f74f29498543c27f4f9697f5c1e980dd2de0d.tar.xz
linux-dev-501f74f29498543c27f4f9697f5c1e980dd2de0d.zip
Merge branch 'upstream-fixes' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/misc-2.6
* 'upstream-fixes' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/misc-2.6: [PATCH] Add missing ifdef for VIA RNG code
-rw-r--r--drivers/char/hw_random.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/char/hw_random.c b/drivers/char/hw_random.c
index b3bc2e37e616..29dc87e59020 100644
--- a/drivers/char/hw_random.c
+++ b/drivers/char/hw_random.c
@@ -131,7 +131,9 @@ enum {
rng_hw_none,
rng_hw_intel,
rng_hw_amd,
+#ifdef __i386__
rng_hw_via,
+#endif
rng_hw_geode,
};