diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2017-10-05 14:56:53 +0200 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2017-10-26 16:58:17 -0400 |
commit | a494ee6cfd771c2b37721a18a1c9209b61bdf81d (patch) | |
tree | 9f17bd31bd0a362325f93d6f2336b2f6232e621e /arch | |
parent | 5266b8e4445cc836c46689d80a9ff539fa3bfbda (diff) | |
download | linux-stable-a494ee6cfd771c2b37721a18a1c9209b61bdf81d.tar.gz linux-stable-a494ee6cfd771c2b37721a18a1c9209b61bdf81d.tar.bz2 linux-stable-a494ee6cfd771c2b37721a18a1c9209b61bdf81d.zip |
arm/xen: don't inclide rwlock.h directly.
rwlock.h should not be included directly. Instead linux/splinlock.h
should be included. One thing it does is to break the RT build.
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: xen-devel@lists.xenproject.org
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/xen/p2m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c index e71eefa2e427..0641ba54ab62 100644 --- a/arch/arm/xen/p2m.c +++ b/arch/arm/xen/p2m.c @@ -1,7 +1,7 @@ #include <linux/bootmem.h> #include <linux/gfp.h> #include <linux/export.h> -#include <linux/rwlock.h> +#include <linux/spinlock.h> #include <linux/slab.h> #include <linux/types.h> #include <linux/dma-mapping.h> |