diff options
author | Liam Girdwood <lg@opensource.wolfsonmicro.com> | 2008-04-30 18:13:42 +0200 |
---|---|---|
committer | Liam Girdwood <lg@opensource.wolfsonmicro.com> | 2008-07-30 11:10:22 +0200 |
commit | ba7e4763437561763b6cca14a41f1d2a7def23e2 (patch) | |
tree | 9eec9ecef01a52cc32946dd12c54a804e8e81ab9 /drivers/regulator/Makefile | |
parent | regulator: regulator test harness (diff) | |
download | linux-ba7e4763437561763b6cca14a41f1d2a7def23e2.tar.xz linux-ba7e4763437561763b6cca14a41f1d2a7def23e2.zip |
regulator: core kbuild files
This patch adds kernel build support for the regulator core.
Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/Makefile')
-rw-r--r-- | drivers/regulator/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile new file mode 100644 index 000000000000..29528b78c8de --- /dev/null +++ b/drivers/regulator/Makefile @@ -0,0 +1,10 @@ +# +# Makefile for regulator drivers. +# + + +obj-$(CONFIG_REGULATOR) += core.o +obj-$(CONFIG_REGULATOR_FIXED_VOLTAGE) += fixed.o +obj-$(CONFIG_REGULATOR_VIRTUAL_CONSUMER) += virtual.o + +ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG |