2020-10-13 11:29:55

by Kathiravan T

[permalink] [raw]
Subject: [PATCH 2/3] mtd: rawnand: qcom: Support for IPQ6018 QPIC NAND controller

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 <[email protected]>
---
drivers/mtd/nand/raw/qcom_nandc.c | 4 ++++
1 file changed, 4 insertions(+)

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,
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation


2020-10-30 17:29:35

by Miquel Raynal

[permalink] [raw]
Subject: Re: [PATCH 2/3] mtd: rawnand: qcom: Support for IPQ6018 QPIC NAND controller

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 <[email protected]>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel