From: Colin King Date: Wed, 14 Jan 2015 14:07:55 +0000 (+0000) Subject: x86/rtc: Remove duplicate const specifier X-Git-Tag: v4.0-rc1~158^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d505ad1d66c9cd31db5ab0d2c7bcb2a47e5bb29e;p=platform%2Fkernel%2Flinux-exynos.git x86/rtc: Remove duplicate const specifier Building with clang: CC arch/x86/kernel/rtc.o arch/x86/kernel/rtc.c:173:29: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] static const char * const const ids[] __initconst = Remove the duplicate const, it is not needed and causes a warning. Signed-off-by: Colin Ian King Link: http://lkml.kernel.org/r/1421244475-313-1-git-send-email-colin.king@canonical.com Signed-off-by: Thomas Gleixner --- diff --git a/arch/x86/kernel/rtc.c b/arch/x86/kernel/rtc.c index ca9622a..fe3dbfe 100644 --- a/arch/x86/kernel/rtc.c +++ b/arch/x86/kernel/rtc.c @@ -170,7 +170,7 @@ static struct platform_device rtc_device = { static __init int add_rtc_cmos(void) { #ifdef CONFIG_PNP - static const char * const const ids[] __initconst = + static const char * const ids[] __initconst = { "PNP0b00", "PNP0b01", "PNP0b02", }; struct pnp_dev *dev; struct pnp_id *id;