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: Rob Herring <robh@kernel.org>
Signed-off-by: Minghuan Lian <Minghuan.Lian@nxp.com>
Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>

authored by

Minghuan Lian and committed by
Marc Zyngier
d35b2c99 b304605f

+7 -5
+3 -3
Documentation/devicetree/bindings/interrupt-controller/fsl,ls-scfg-msi.txt
··· 4 4 5 5 - compatible: should be "fsl,<soc-name>-msi" to identify 6 6 Layerscape PCIe MSI controller block such as: 7 - "fsl,1s1021a-msi" 8 - "fsl,1s1043a-msi" 7 + "fsl,ls1021a-msi" 8 + "fsl,ls1043a-msi" 9 9 - msi-controller: indicates that this is a PCIe MSI controller node 10 10 - reg: physical base address of the controller and length of memory mapped. 11 11 - interrupts: an interrupt to the parent interrupt controller. ··· 23 23 Examples: 24 24 25 25 msi1: msi-controller@1571000 { 26 - compatible = "fsl,1s1043a-msi"; 26 + compatible = "fsl,ls1043a-msi"; 27 27 reg = <0x0 0x1571000 0x0 0x8>, 28 28 msi-controller; 29 29 interrupts = <0 116 0x4>;
+4 -2
drivers/irqchip/irq-ls-scfg-msi.c
··· 219 219 } 220 220 221 221 static const struct of_device_id ls_scfg_msi_id[] = { 222 - { .compatible = "fsl,1s1021a-msi", }, 223 - { .compatible = "fsl,1s1043a-msi", }, 222 + { .compatible = "fsl,1s1021a-msi", }, /* a typo */ 223 + { .compatible = "fsl,1s1043a-msi", }, /* a typo */ 224 + { .compatible = "fsl,ls1021a-msi", }, 225 + { .compatible = "fsl,ls1043a-msi", }, 224 226 {}, 225 227 }; 226 228