summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorColin King <colin.king@canonical.com>2015-01-14 14:07:55 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-07-27 15:03:23 -0700
commitc392029da52e98d2d2a7bd70874c135b49b45d63 (patch)
tree7f89eeebeb1b92b91603a99935d70edf3755c04d /arch
parentd1ef14e5db17cd0642e3e9621182e206cdbceca5 (diff)
x86/rtc: Remove duplicate const specifier
commit d505ad1d66c9cd31db5ab0d2c7bcb2a47e5bb29e upstream. 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 <colin.king@canonical.com> Link: http://lkml.kernel.org/r/1421244475-313-1-git-send-email-colin.king@canonical.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kernel/rtc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/rtc.c b/arch/x86/kernel/rtc.c
index ca9622a25e95..fe3dbfe0c4a5 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;