aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/hw_random/Makefile
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2006-12-06 20:38:20 -0800
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-07 08:39:39 -0800
commitfed806f4072badad614699e1d40202e0ffef5c63 (patch)
treed60964e89295121019c17a214eb801d2e3dd6469 /drivers/char/hw_random/Makefile
parent1df1e63b9e9340015c01b85817568fb9afde10bc (diff)
downloadkernel_samsung_smdk4412-fed806f4072badad614699e1d40202e0ffef5c63.zip
kernel_samsung_smdk4412-fed806f4072badad614699e1d40202e0ffef5c63.tar.gz
kernel_samsung_smdk4412-fed806f4072badad614699e1d40202e0ffef5c63.tar.bz2
[PATCH] allow hwrandom core to be a module
Despite it being small, there should be the option of making it a module... Signed-off-by: Jan Beulich <jbeulich@novell.com> Cc: Michael Buesch <mb@bu3sch.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/hw_random/Makefile')
-rw-r--r--drivers/char/hw_random/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/hw_random/Makefile b/drivers/char/hw_random/Makefile
index e263ae9..c41fa19 100644
--- a/drivers/char/hw_random/Makefile
+++ b/drivers/char/hw_random/Makefile
@@ -2,7 +2,8 @@
# Makefile for HW Random Number Generator (RNG) device drivers.
#
-obj-$(CONFIG_HW_RANDOM) += core.o
+obj-$(CONFIG_HW_RANDOM) += rng-core.o
+rng-core-y := core.o
obj-$(CONFIG_HW_RANDOM_INTEL) += intel-rng.o
obj-$(CONFIG_HW_RANDOM_AMD) += amd-rng.o
obj-$(CONFIG_HW_RANDOM_GEODE) += geode-rng.o