Separate to expose the edits vs pure moves. Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Frederic Barrat <fbarrat@xxxxxxxxxxxxx> Cc: Andrew Donnellan <andrew.donnellan@xxxxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Signed-off-by: Olof Johansson <olof@xxxxxxxxx> --- MAINTAINERS | 2 +- arch/powerpc/platforms/powernv/ocxl.c | 2 +- drivers/accel/ocxl/config.c | 4 ++-- drivers/accel/ocxl/link.c | 2 +- drivers/accel/ocxl/ocxl_internal.h | 2 +- drivers/scsi/cxlflash/ocxl_hw.c | 2 +- include/{misc => linux/accel}/ocxl-config.h | 6 +++--- include/{misc => linux/accel}/ocxl.h | 6 +++--- 8 files changed, 13 insertions(+), 13 deletions(-) rename include/{misc => linux/accel}/ocxl-config.h (94%) rename include/{misc => linux/accel}/ocxl.h (98%) diff --git a/MAINTAINERS b/MAINTAINERS index a1b2ba3bd402d..faa39da1445d1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -11013,7 +11013,7 @@ S: Supported F: arch/powerpc/platforms/powernv/ocxl.c F: arch/powerpc/include/asm/pnv-ocxl.h F: drivers/accel/ocxl/ -F: include/misc/ocxl* +F: include/linux/accel/ocxl* F: include/uapi/misc/ocxl.h F: Documentation/accelerators/ocxl.rst diff --git a/arch/powerpc/platforms/powernv/ocxl.c b/arch/powerpc/platforms/powernv/ocxl.c index 8c65aacda9c81..90e3a66c51dde 100644 --- a/arch/powerpc/platforms/powernv/ocxl.c +++ b/arch/powerpc/platforms/powernv/ocxl.c @@ -3,7 +3,7 @@ #include <asm/pnv-ocxl.h> #include <asm/opal.h> #include <asm/xive.h> -#include <misc/ocxl-config.h> +#include <linux/accel/ocxl-config.h> #include "pci.h" #define PNV_OCXL_TL_P9_RECV_CAP 0x000000000000000Full diff --git a/drivers/accel/ocxl/config.c b/drivers/accel/ocxl/config.c index 8f2c5d8bd2eee..38351c6b28039 100644 --- a/drivers/accel/ocxl/config.c +++ b/drivers/accel/ocxl/config.c @@ -2,8 +2,8 @@ // Copyright 2017 IBM Corp. #include <linux/pci.h> #include <asm/pnv-ocxl.h> -#include <misc/ocxl.h> -#include <misc/ocxl-config.h> +#include <linux/accel/ocxl.h> +#include <linux/accel/ocxl-config.h> #define EXTRACT_BIT(val, bit) (!!(val & BIT(bit))) #define EXTRACT_BITS(val, s, e) ((val & GENMASK(e, s)) >> s) diff --git a/drivers/accel/ocxl/link.c b/drivers/accel/ocxl/link.c index d50b861d7e57b..7c0550425a129 100644 --- a/drivers/accel/ocxl/link.c +++ b/drivers/accel/ocxl/link.c @@ -6,7 +6,7 @@ #include <linux/mmu_context.h> #include <asm/copro.h> #include <asm/pnv-ocxl.h> -#include <misc/ocxl.h> +#include <linux/accel/ocxl.h> #include "ocxl_internal.h" #include "trace.h" diff --git a/drivers/accel/ocxl/ocxl_internal.h b/drivers/accel/ocxl/ocxl_internal.h index a32f2151029f6..4516390a8dbcb 100644 --- a/drivers/accel/ocxl/ocxl_internal.h +++ b/drivers/accel/ocxl/ocxl_internal.h @@ -6,7 +6,7 @@ #include <linux/pci.h> #include <linux/cdev.h> #include <linux/list.h> -#include <misc/ocxl.h> +#include <linux/accel/ocxl.h> #define MAX_IRQ_PER_LINK 2000 #define MAX_IRQ_PER_CONTEXT MAX_IRQ_PER_LINK diff --git a/drivers/scsi/cxlflash/ocxl_hw.c b/drivers/scsi/cxlflash/ocxl_hw.c index 37b8dc60f5f6d..7a62f78033b73 100644 --- a/drivers/scsi/cxlflash/ocxl_hw.c +++ b/drivers/scsi/cxlflash/ocxl_hw.c @@ -19,7 +19,7 @@ #include <linux/poll.h> #include <linux/sched/signal.h> -#include <misc/ocxl.h> +#include <linux/accel/ocxl.h> #include <uapi/misc/cxl.h> diff --git a/include/misc/ocxl-config.h b/include/linux/accel/ocxl-config.h similarity index 94% rename from include/misc/ocxl-config.h rename to include/linux/accel/ocxl-config.h index 3526fa996a220..4d25ed7b971f8 100644 --- a/include/misc/ocxl-config.h +++ b/include/linux/accel/ocxl-config.h @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0+ // Copyright 2017 IBM Corp. -#ifndef _OCXL_CONFIG_H_ -#define _OCXL_CONFIG_H_ +#ifndef _LINUX_ACCEL_OCXL_CONFIG_H_ +#define _LINUX_ACCEL_OCXL_CONFIG_H_ /* * This file lists the various constants used to read the @@ -42,4 +42,4 @@ #define OCXL_DVSEC_VENDOR_TLX_VERS 0x10 #define OCXL_DVSEC_VENDOR_DLX_VERS 0x20 -#endif /* _OCXL_CONFIG_H_ */ +#endif /* _LINUX_ACCEL_OCXL_CONFIG_H_ */ diff --git a/include/misc/ocxl.h b/include/linux/accel/ocxl.h similarity index 98% rename from include/misc/ocxl.h rename to include/linux/accel/ocxl.h index 9ff6ddc28e221..1ab4c50700029 100644 --- a/include/misc/ocxl.h +++ b/include/linux/accel/ocxl.h @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0+ // Copyright 2017 IBM Corp. -#ifndef _MISC_OCXL_H_ -#define _MISC_OCXL_H_ +#ifndef _LINUX_ACCEL_OCXL_H_ +#define _LINUX_ACCEL_OCXL_H_ #include <linux/pci.h> @@ -220,4 +220,4 @@ extern int ocxl_link_irq_alloc(void *link_handle, int *hw_irq, */ extern void ocxl_link_free_irq(void *link_handle, int hw_irq); -#endif /* _MISC_OCXL_H_ */ +#endif /* _LINUX_ACCEL_OCXL_H_ */ -- 2.11.0