]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
xen: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Thu, 2 May 2024 01:31:36 +0000 (19:31 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 May 2024 14:00:57 +0000 (08:00 -0600)
Remove <common.h> from this driver directory and when needed
add missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/xen/events.c
drivers/xen/gnttab.c
drivers/xen/hypervisor.c
drivers/xen/pvblock.c
drivers/xen/xenbus.c
include/xen/events.h

index 2ebe20dbf26e6886de768f5ec029d8db9b1a3d74..fa8b13d2c61d6992aa9cc5efb2a71d75806c7e95 100644 (file)
@@ -14,7 +14,6 @@
  *
  * [1] - http://xenbits.xen.org/gitweb/?p=mini-os.git;a=summary
  */
-#include <common.h>
 #include <log.h>
 
 #include <asm/io.h>
index 31e96e2939c079c15e0641fc09ca184625e4d995..005694a5c626b902cbad71a73f8c6afd11b6333d 100644 (file)
@@ -14,7 +14,6 @@
  *
  * [1] - http://xenbits.xen.org/gitweb/?p=mini-os.git;a=summary
  */
-#include <common.h>
 #include <asm/global_data.h>
 #include <linux/compiler.h>
 #include <log.h>
index 0b2311ba26756385e008a76d982534846cab212d..d28df823c684004bf3ee3d6ba0552a59357357bb 100644 (file)
@@ -8,7 +8,6 @@
  * Copyright (c) 2005, Grzegorz Milos, gm281@cam.ac.uk,Intel Research Cambridge
  * Copyright (c) 2020, EPAM Systems Inc.
  */
-#include <common.h>
 #include <cpu_func.h>
 #include <log.h>
 #include <memalign.h>
index 9fc51d203e5e3650ab216f36ac2593c6059a9559..0e47ffb46a82be0584356d686d3703e65638f0f8 100644 (file)
@@ -7,7 +7,6 @@
 #define LOG_CATEGORY UCLASS_PVBLOCK
 
 #include <blk.h>
-#include <common.h>
 #include <dm.h>
 #include <dm/device-internal.h>
 #include <malloc.h>
index 177d144723c1c7d4cfede3d2b5785ac1b58aa4d5..36de5255099781e5c45e8afafcb5e71f30dd2a7c 100644 (file)
@@ -15,7 +15,6 @@
  * [1] - http://xenbits.xen.org/gitweb/?p=mini-os.git;a=summary
  */
 
-#include <common.h>
 #include <log.h>
 
 #include <asm/armv8/mmu.h>
index 82bd18b48c88dcb3a58ac5c572996b2338010941..f0a8ef32d00b5e8909725c6e2b0800fc9d09cad7 100644 (file)
@@ -15,6 +15,7 @@
 #ifndef _EVENTS_H_
 #define _EVENTS_H_
 
+#include <asm/ptrace.h>
 #include <asm/xen/hypercall.h>
 #include <xen/interface/event_channel.h>