diff options
author | David Vrabel <david.vrabel@citrix.com> | 2013-08-07 15:32:12 +0200 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2014-01-06 16:07:38 +0100 |
commit | d2ba3166f23baa53f5ee9c5c2ca43b42fb4e9e62 (patch) | |
tree | 50208da156fe9f16efc8d23e2fcb96cfc1da2dc1 /drivers/xen/Makefile | |
parent | xen/events: replace raw bit ops with functions (diff) | |
download | linux-d2ba3166f23baa53f5ee9c5c2ca43b42fb4e9e62.tar.xz linux-d2ba3166f23baa53f5ee9c5c2ca43b42fb4e9e62.zip |
xen/events: move drivers/xen/events.c into drivers/xen/events/
events.c will be split into multiple files so move it into its own
directory.
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Diffstat (limited to 'drivers/xen/Makefile')
-rw-r--r-- | drivers/xen/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile index 14fe79d8634a..d75c811bfa56 100644 --- a/drivers/xen/Makefile +++ b/drivers/xen/Makefile @@ -2,7 +2,8 @@ ifeq ($(filter y, $(CONFIG_ARM) $(CONFIG_ARM64)),) obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o endif obj-$(CONFIG_X86) += fallback.o -obj-y += grant-table.o features.o events.o balloon.o manage.o +obj-y += grant-table.o features.o balloon.o manage.o +obj-y += events/ obj-y += xenbus/ nostackp := $(call cc-option, -fno-stack-protector) |