From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Torokhov Subject: Re: [PATCH] input: cros_ec_keyb: remove extraneous 'const' Date: Thu, 11 May 2017 10:14:42 -0700 Message-ID: <20170511171442.GA513@dtor-ws> References: <20170511114822.2951151-1-arnd@arndb.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mail-pg0-f68.google.com ([74.125.83.68]:35392 "EHLO mail-pg0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757741AbdEKROq (ORCPT ); Thu, 11 May 2017 13:14:46 -0400 Content-Disposition: inline In-Reply-To: <20170511114822.2951151-1-arnd@arndb.de> Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: Arnd Bergmann Cc: Lee Jones , Enric Balletbo Serra , Douglas Anderson , Brian Norris , Rajat Jain , Gwendal Grignou , Guenter Roeck , Vic Yang , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org On Thu, May 11, 2017 at 01:48:04PM +0200, Arnd Bergmann wrote: > gcc-7 warns about 'const SIMPLE_DEV_PM_OPS', as that macro already constains > a 'const' keyword: > > drivers/input/keyboard/cros_ec_keyb.c:663:14: error: duplicate 'const' declaration specifier [-Werror=duplicate-decl-specifier] > static const SIMPLE_DEV_PM_OPS(cros_ec_keyb_pm_ops, NULL, cros_ec_keyb_resume); > > This removes the extra one. > > Fixes: 6af6dc2d2aa6 ("input: Add ChromeOS EC keyboard driver") > Signed-off-by: Arnd Bergmann Applied, thank you. > --- > drivers/input/keyboard/cros_ec_keyb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/input/keyboard/cros_ec_keyb.c b/drivers/input/keyboard/cros_ec_keyb.c > index c7a8120b13c0..79eb29550c34 100644 > --- a/drivers/input/keyboard/cros_ec_keyb.c > +++ b/drivers/input/keyboard/cros_ec_keyb.c > @@ -660,7 +660,7 @@ static const struct of_device_id cros_ec_keyb_of_match[] = { > MODULE_DEVICE_TABLE(of, cros_ec_keyb_of_match); > #endif > > -static const SIMPLE_DEV_PM_OPS(cros_ec_keyb_pm_ops, NULL, cros_ec_keyb_resume); > +static SIMPLE_DEV_PM_OPS(cros_ec_keyb_pm_ops, NULL, cros_ec_keyb_resume); > > static struct platform_driver cros_ec_keyb_driver = { > .probe = cros_ec_keyb_probe, > -- > 2.9.0 > -- Dmitry