From acec467875cd84155e5e885944466950a649ff85 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Fri, 28 Mar 2025 13:10:58 +0000 Subject: [PATCH] ppc: Drop asm/byteorder.h With the common code moved fully onto xen/byteorder.h, clean up the dregs. Signed-off-by: Andrew Cooper Reviewed-by: Shawn Anastasio --- xen/arch/ppc/include/asm/byteorder.h | 6 ------ xen/arch/ppc/include/asm/page.h | 4 +--- xen/arch/ppc/mm-radix.c | 2 +- 3 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 xen/arch/ppc/include/asm/byteorder.h diff --git a/xen/arch/ppc/include/asm/byteorder.h b/xen/arch/ppc/include/asm/byteorder.h deleted file mode 100644 index 8df6adbf0d..0000000000 --- a/xen/arch/ppc/include/asm/byteorder.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef _ASM_PPC_BYTEORDER_H -#define _ASM_PPC_BYTEORDER_H - -#include - -#endif /* _ASM_PPC_BYTEORDER_H */ diff --git a/xen/arch/ppc/include/asm/page.h b/xen/arch/ppc/include/asm/page.h index 6d4cd2611c..c6160afcfd 100644 --- a/xen/arch/ppc/include/asm/page.h +++ b/xen/arch/ppc/include/asm/page.h @@ -3,9 +3,7 @@ #define _ASM_PPC_PAGE_H #include -#include - -#include +#include #define PDE_VALID PPC_BIT(0) #define PDE_NLB_MASK 0x1ffffffffffffe0UL diff --git a/xen/arch/ppc/mm-radix.c b/xen/arch/ppc/mm-radix.c index 24232f3907..9a00ae416a 100644 --- a/xen/arch/ppc/mm-radix.c +++ b/xen/arch/ppc/mm-radix.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ #include +#include #include #include #include @@ -7,7 +8,6 @@ #include #include -#include #include #include #include -- 2.39.5