Skip to content

Commit f2a5fef

Browse files
committed
x86/xen: cleanup includes in arch/x86/xen/spinlock.c
arch/x86/xen/spinlock.c includes several headers which are not needed. Remove the #includes. Signed-off-by: Juergen Gross <jgross@suse.com> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com> Signed-off-by: Juergen Gross <jgross@suse.com>
1 parent 3941552 commit f2a5fef

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

arch/x86/xen/spinlock.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,17 @@
33
* Split spinlock implementation out into its own file, so it can be
44
* compiled in a FTRACE-compatible way.
55
*/
6-
#include <linux/kernel_stat.h>
6+
#include <linux/kernel.h>
77
#include <linux/spinlock.h>
8-
#include <linux/debugfs.h>
9-
#include <linux/log2.h>
10-
#include <linux/gfp.h>
118
#include <linux/slab.h>
129
#include <linux/atomic.h>
1310

1411
#include <asm/paravirt.h>
1512
#include <asm/qspinlock.h>
1613

17-
#include <xen/interface/xen.h>
1814
#include <xen/events.h>
1915

2016
#include "xen-ops.h"
21-
#include "debugfs.h"
2217

2318
static DEFINE_PER_CPU(int, lock_kicker_irq) = -1;
2419
static DEFINE_PER_CPU(char *, irq_name);

0 commit comments

Comments
 (0)