aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2017-05-11 13:14:06 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-05-11 20:41:01 -0400
commit3af9256150b3ecc597c5428711f87ce105d1d58e (patch)
tree6ecc50125f695a09f719b1ff2d60ec7587f150cb
parent8be193c7b1f44d3f4dcb27107df0831709c2deb1 (diff)
Input: cros_ec_keyb - remove extraneous 'const'
gcc-7 warns about 'const SIMPLE_DEV_PM_OPS', as that macro already contains 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 <arnd@arndb.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/keyboard/cros_ec_keyb.c2
1 files changed, 1 insertions, 1 deletions
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[] = {
660MODULE_DEVICE_TABLE(of, cros_ec_keyb_of_match); 660MODULE_DEVICE_TABLE(of, cros_ec_keyb_of_match);
661#endif 661#endif
662 662
663static const SIMPLE_DEV_PM_OPS(cros_ec_keyb_pm_ops, NULL, cros_ec_keyb_resume); 663static SIMPLE_DEV_PM_OPS(cros_ec_keyb_pm_ops, NULL, cros_ec_keyb_resume);
664 664
665static struct platform_driver cros_ec_keyb_driver = { 665static struct platform_driver cros_ec_keyb_driver = {
666 .probe = cros_ec_keyb_probe, 666 .probe = cros_ec_keyb_probe,