Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1506679 > unrolled thread
| Started by | Wei Yongjun <weiyj.lk@gmail.com> |
|---|---|
| First post | 2016-10-23 13:50 +0200 |
| Last post | 2016-10-24 02:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH -next] ARM: mediatek: add terminate entry for of_device_id tables Wei Yongjun <weiyj.lk@gmail.com> - 2016-10-23 13:50 +0200
RE: [PATCH -next] ARM: mediatek: add terminate entry for of_device_id tables "weiyongjun (A)" <weiyongjun1@huawei.com> - 2016-10-24 02:30 +0200
| From | Wei Yongjun <weiyj.lk@gmail.com> |
|---|---|
| Date | 2016-10-23 13:50 +0200 |
| Subject | [PATCH -next] ARM: mediatek: add terminate entry for of_device_id tables |
| Message-ID | <svprP-mD-13@gated-at.bofh.it> |
From: Wei Yongjun <weiyongjun1@huawei.com>
Make sure of_device_id tables are NULL terminated.
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
arch/arm/mach-mediatek/platsmp.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/mach-mediatek/platsmp.c b/arch/arm/mach-mediatek/platsmp.c
index b821e34..e6cffc7 100644
--- a/arch/arm/mach-mediatek/platsmp.c
+++ b/arch/arm/mach-mediatek/platsmp.c
@@ -54,11 +54,13 @@ static const struct of_device_id mtk_tz_smp_boot_infos[] __initconst = {
{ .compatible = "mediatek,mt8135", .data = &mtk_mt8135_tz_boot },
{ .compatible = "mediatek,mt8127", .data = &mtk_mt8135_tz_boot },
{ .compatible = "mediatek,mt2701", .data = &mtk_mt8135_tz_boot },
+ { },
};
static const struct of_device_id mtk_smp_boot_infos[] __initconst = {
{ .compatible = "mediatek,mt6589", .data = &mtk_mt6589_boot },
{ .compatible = "mediatek,mt7623", .data = &mtk_mt7623_boot },
+ { },
};
static void __iomem *mtk_smp_base;
[toc] | [next] | [standalone]
| From | "weiyongjun (A)" <weiyongjun1@huawei.com> |
|---|---|
| Date | 2016-10-24 02:30 +0200 |
| Subject | RE: [PATCH -next] ARM: mediatek: add terminate entry for of_device_id tables |
| Message-ID | <svBjj-8w3-3@gated-at.bofh.it> |
| In reply to | #1506679 |
> -----Original Message----- > From: Wei Yongjun [mailto:weiyj.lk@gmail.com] > Sent: Sunday, October 23, 2016 7:43 PM > To: Matthias Brugger <matthias.bgg@gmail.com>; Russell King > <linux@armlinux.org.uk> > Cc: weiyongjun (A) <weiyongjun1@huawei.com>; linux-arm- > kernel@lists.infradead.org; linux-mediatek@lists.infradead.org; linux- > kernel@vger.kernel.org > Subject: [PATCH -next] ARM: mediatek: add terminate entry for > of_device_id tables > > From: Wei Yongjun <weiyongjun1@huawei.com> > > Make sure of_device_id tables are NULL terminated. > > Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> > --- > arch/arm/mach-mediatek/platsmp.c | 2 ++ > 1 file changed, 2 insertions(+) > Sorry, this patch is not correct since mtk_tz_smp_boot_infos is used as ARRAY_SIZE(mtk_tz_smp_boot_infos), please ignore it. Regards, Yongjun Wei
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web