Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec249dd8 authored by Michael Neuling's avatar Michael Neuling Committed by Michael Ellerman
Browse files

cxl: Move include file cxl.h -> cxl-base.h



This moves the current include file from cxl.h -> cxl-base.h.  This current
include file is used only to pass information between the base driver that
needs to be built into the kernel and the cxl module.

This is to make way for a new include/misc/cxl.h which will
contain just the kernel API for other driver to use

Signed-off-by: default avatarMichael Neuling <mikey@neuling.org>
Acked-by: default avatarIan Munsie <imunsie@au1.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 406e12ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2946,7 +2946,7 @@ M: Michael Neuling <mikey@neuling.org>
L:	linuxppc-dev@lists.ozlabs.org
S:	Supported
F:	drivers/misc/cxl/
F:	include/misc/cxl.h
F:	include/misc/cxl*
F:	include/uapi/misc/cxl.h
F:	Documentation/powerpc/cxl.txt
F:	Documentation/powerpc/cxl.txt
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
#define _ASM_PNV_PCI_H

#include <linux/pci.h>
#include <misc/cxl.h>
#include <misc/cxl-base.h>

int pnv_phb_to_cxl_mode(struct pci_dev *dev, uint64_t mode);
int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq,
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
#include <asm/reg.h>
#include <asm/copro.h>
#include <asm/spu.h>
#include <misc/cxl.h>
#include <misc/cxl-base.h>

/*
 * This ought to be kept in sync with the powerpc specific do_page_fault
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@
#include <asm/kexec.h>
#include <asm/ppc-opcode.h>

#include <misc/cxl.h>
#include <misc/cxl-base.h>

#ifdef DEBUG_LOW
#define DBG_LOW(fmt...) udbg_printf(fmt)
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
#include <asm/firmware.h>
#include <asm/pnv-pci.h>

#include <misc/cxl.h>
#include <misc/cxl-base.h>

#include "powernv.h"
#include "pci.h"
Loading