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

Commit d35b2c99 authored by Minghuan Lian's avatar Minghuan Lian Committed by Marc Zyngier
Browse files

irqchip/ls-scfg-msi: Fix typo of MSI compatible strings



The patch is to fix typo of the Layerscape SCFG MSI dts compatible
strings. "1" is replaced by "l".

Acked-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarMinghuan Lian <Minghuan.Lian@nxp.com>
Signed-off-by: default avatarHou Zhiqiang <Zhiqiang.Hou@nxp.com>
Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
parent b304605f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -4,8 +4,8 @@ Required properties:

- compatible: should be "fsl,<soc-name>-msi" to identify
	      Layerscape PCIe MSI controller block such as:
              "fsl,1s1021a-msi"
              "fsl,1s1043a-msi"
              "fsl,ls1021a-msi"
              "fsl,ls1043a-msi"
- msi-controller: indicates that this is a PCIe MSI controller node
- reg: physical base address of the controller and length of memory mapped.
- interrupts: an interrupt to the parent interrupt controller.
@@ -23,7 +23,7 @@ MSI controller node
Examples:

	msi1: msi-controller@1571000 {
		compatible = "fsl,1s1043a-msi";
		compatible = "fsl,ls1043a-msi";
		reg = <0x0 0x1571000 0x0 0x8>,
		msi-controller;
		interrupts = <0 116 0x4>;
+4 −2
Original line number Diff line number Diff line
@@ -219,8 +219,10 @@ static int ls_scfg_msi_remove(struct platform_device *pdev)
}

static const struct of_device_id ls_scfg_msi_id[] = {
	{ .compatible = "fsl,1s1021a-msi", },
	{ .compatible = "fsl,1s1043a-msi", },
	{ .compatible = "fsl,1s1021a-msi", }, /* a typo */
	{ .compatible = "fsl,1s1043a-msi", }, /* a typo */
	{ .compatible = "fsl,ls1021a-msi", },
	{ .compatible = "fsl,ls1043a-msi", },
	{},
};