diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-11-28 12:23:18 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 20:40:35 -0800 |
commit | c63469a3985a9771c18a916b8d42845d044ea0b1 (patch) | |
tree | 7d54c8741aec9d71864203ce430d289d40c4c975 /drivers/base/Makefile | |
parent | cbe9c595f1de2e2a98403be2c14bfbc2486e84c4 (diff) | |
download | linux-c63469a3985a9771c18a916b8d42845d044ea0b1.tar.gz linux-c63469a3985a9771c18a916b8d42845d044ea0b1.tar.bz2 linux-c63469a3985a9771c18a916b8d42845d044ea0b1.zip |
Driver core: move the driver specific module code into the driver core
The module driver specific code should belong in the driver core, not in
the kernel/ directory. So move this code. This is done in preparation
for some struct device_driver rework that should be confined to the
driver core code only.
This also lets us keep from exporting these functions, as no external
code should ever be calling it.
Thanks to Andrew Morton for the !CONFIG_MODULES fix.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/Makefile')
-rw-r--r-- | drivers/base/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/Makefile b/drivers/base/Makefile index b39ea3f59c9b..ff2696823f8d 100644 --- a/drivers/base/Makefile +++ b/drivers/base/Makefile @@ -11,6 +11,7 @@ obj-$(CONFIG_FW_LOADER) += firmware_class.o obj-$(CONFIG_NUMA) += node.o obj-$(CONFIG_MEMORY_HOTPLUG_SPARSE) += memory.o obj-$(CONFIG_SMP) += topology.o +obj-$(CONFIG_MODULES) += module.o obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o ifeq ($(CONFIG_DEBUG_DRIVER),y) |