diff options
author | Ian Campbell <ian.campbell@citrix.com> | 2009-12-07 17:10:27 -0800 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-11-18 23:44:44 -0800 |
commit | b5d827b641b192ceb6968c21feb544c744e43108 (patch) | |
tree | 040da7c525271a74c7da2c5d60f29f02f000788f /drivers/xen/Makefile | |
parent | 67cb40560940ba36de22d66f0d5d8efe235c8bb1 (diff) | |
download | linux-b5d827b641b192ceb6968c21feb544c744e43108.tar.gz linux-b5d827b641b192ceb6968c21feb544c744e43108.tar.bz2 linux-b5d827b641b192ceb6968c21feb544c744e43108.zip |
xen: make evtchn's name less generic
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/xen/Makefile')
-rw-r--r-- | drivers/xen/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile index eb8a78d77d9d..533a199e7a3f 100644 --- a/drivers/xen/Makefile +++ b/drivers/xen/Makefile @@ -8,9 +8,12 @@ obj-$(CONFIG_BLOCK) += biomerge.o obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o obj-$(CONFIG_XEN_XENCOMM) += xencomm.o obj-$(CONFIG_XEN_BALLOON) += balloon.o -obj-$(CONFIG_XEN_DEV_EVTCHN) += evtchn.o +obj-$(CONFIG_XEN_DEV_EVTCHN) += xen-evtchn.o obj-$(CONFIG_XENFS) += xenfs/ obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o obj-$(CONFIG_XEN_PLATFORM_PCI) += platform-pci.o obj-$(CONFIG_SWIOTLB_XEN) += swiotlb-xen.o obj-$(CONFIG_XEN_DOM0) += pci.o + +xen-evtchn-y := evtchn.o + |