Message ID | 1602566124-13456-3-git-send-email-kathirav@codeaurora.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Add QPIC NAND support for IPQ6018 | expand |
On Tue, 2020-10-13 at 05:15:23 UTC, Kathiravan T wrote: > Add the compatible string for IPQ6018 QPIC NAND controller > version 1.5.0. It's properties are same as IPQ8074, so reuse > the same. > > Signed-off-by: Kathiravan T <kathirav@codeaurora.org> Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks. Miquel
diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c index bd7a7251429b..e7480b53ad40 100644 --- a/drivers/mtd/nand/raw/qcom_nandc.c +++ b/drivers/mtd/nand/raw/qcom_nandc.c @@ -3071,6 +3071,10 @@ static const struct of_device_id qcom_nandc_of_match[] = { .compatible = "qcom,ipq4019-nand", .data = &ipq4019_nandc_props, }, + { + .compatible = "qcom,ipq6018-nand", + .data = &ipq8074_nandc_props, + }, { .compatible = "qcom,ipq8074-nand", .data = &ipq8074_nandc_props,
Add the compatible string for IPQ6018 QPIC NAND controller version 1.5.0. It's properties are same as IPQ8074, so reuse the same. Signed-off-by: Kathiravan T <kathirav@codeaurora.org> --- drivers/mtd/nand/raw/qcom_nandc.c | 4 ++++ 1 file changed, 4 insertions(+)