Message ID | 1436875247-14130-1-git-send-email-geert+renesas@glider.be (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Geert Uytterhoeven |
Headers | show |
On Tue, Jul 14, 2015 at 02:00:47PM +0200, Geert Uytterhoeven wrote: > Since the removal of the r8a7740 legacy SoC code in commit > 44d88c754e57a6d9 ("ARM: shmobile: Remove legacy SoC code for R-Mobile > A1"), all former users of the "sh-cmt-48-gen2" platform device name are > only supported in generic DT-only ARM multi-platform builds. The driver > doesn't need to match platform devices by name anymore, hence remove the > corresponding platform_device_id entry. > > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Simon Horman <horms+renesas@verge.net.au> > --- > The commit mentioned above is in -next, destined for v4.3. > --- > drivers/clocksource/sh_cmt.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c > index ef799532a7a7963e..e4138e2a88f56b4e 100644 > --- a/drivers/clocksource/sh_cmt.c > +++ b/drivers/clocksource/sh_cmt.c > @@ -935,7 +935,6 @@ static int sh_cmt_map_memory(struct sh_cmt_device *cmt) > static const struct platform_device_id sh_cmt_id_table[] = { > { "sh-cmt-16", (kernel_ulong_t)&sh_cmt_info[SH_CMT_16BIT] }, > { "sh-cmt-32", (kernel_ulong_t)&sh_cmt_info[SH_CMT_32BIT] }, > - { "sh-cmt-48", (kernel_ulong_t)&sh_cmt_info[SH_CMT_48BIT] }, > { } > }; > MODULE_DEVICE_TABLE(platform, sh_cmt_id_table); > -- > 1.9.1 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-sh" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 07/14/2015 02:00 PM, Geert Uytterhoeven wrote: > Since the removal of the r8a7740 legacy SoC code in commit > 44d88c754e57a6d9 ("ARM: shmobile: Remove legacy SoC code for R-Mobile > A1"), all former users of the "sh-cmt-48-gen2" platform device name are > only supported in generic DT-only ARM multi-platform builds. The driver > doesn't need to match platform devices by name anymore, hence remove the > corresponding platform_device_id entry. > > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> > --- Applied for 4.3 Thanks ! -- Daniel
diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c index ef799532a7a7963e..e4138e2a88f56b4e 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c @@ -935,7 +935,6 @@ static int sh_cmt_map_memory(struct sh_cmt_device *cmt) static const struct platform_device_id sh_cmt_id_table[] = { { "sh-cmt-16", (kernel_ulong_t)&sh_cmt_info[SH_CMT_16BIT] }, { "sh-cmt-32", (kernel_ulong_t)&sh_cmt_info[SH_CMT_32BIT] }, - { "sh-cmt-48", (kernel_ulong_t)&sh_cmt_info[SH_CMT_48BIT] }, { } }; MODULE_DEVICE_TABLE(platform, sh_cmt_id_table);
Since the removal of the r8a7740 legacy SoC code in commit 44d88c754e57a6d9 ("ARM: shmobile: Remove legacy SoC code for R-Mobile A1"), all former users of the "sh-cmt-48-gen2" platform device name are only supported in generic DT-only ARM multi-platform builds. The driver doesn't need to match platform devices by name anymore, hence remove the corresponding platform_device_id entry. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- The commit mentioned above is in -next, destined for v4.3. --- drivers/clocksource/sh_cmt.c | 1 - 1 file changed, 1 deletion(-)