]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Input: da9061 - onkey driver
authorSteve Twiss <stwiss.opensource@diasemi.com>
Wed, 26 Oct 2016 22:49:13 +0000 (15:49 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Wed, 26 Oct 2016 23:01:16 +0000 (16:01 -0700)
Copyright header is updated to add DA9061 in its description and the module
description macro is extended to include DA9061.

Minor change to the code, alters dev_dbg() statements to report a generic
"PMIC" instead of DA9063. This device driver is compatible with DA9061,
DA9062 and DA9063.

Kconfig is updated to reflect support for DA9061/62/63.

Signed-off-by: Steve Twiss <stwiss.opensource@diasemi.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/misc/Kconfig
drivers/input/misc/da9063_onkey.c

index 7ffb614ce5664cd7955600a216b121e7c61a1fe2..1ae4d9617ff807c71ac011f79413d6faeed2d202 100644 (file)
@@ -625,11 +625,12 @@ config INPUT_DA9055_ONKEY
          will be called da9055_onkey.
 
 config INPUT_DA9063_ONKEY
-       tristate "Dialog DA9062/63 OnKey"
+       tristate "Dialog DA9063/62/61 OnKey"
        depends on MFD_DA9063 || MFD_DA9062
        help
-         Support the ONKEY of Dialog DA9063 and DA9062 Power Management ICs
-         as an input device capable of reporting the power button status.
+         Support the ONKEY of Dialog DA9063, DA9062 and DA9061 Power
+         Management ICs as an input device capable of reporting the
+         power button status.
 
          To compile this driver as a module, choose M here: the module
          will be called da9063_onkey.
index bb863e062b03b3cf66317c8899401478e2f06930..dff6fe5724fe2c46d55349d4a725d3404eea06b4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * OnKey device driver for DA9063 and DA9062 PMICs
+ * OnKey device driver for DA9063, DA9062 and DA9061 PMICs
  * Copyright (C) 2015  Dialog Semiconductor Ltd.
  *
  * This program is free software; you can redistribute it and/or
@@ -149,13 +149,13 @@ static void da9063_poll_on(struct work_struct *work)
                         * and then send shutdown command
                         */
                        dev_dbg(&onkey->input->dev,
-                               "Sending SHUTDOWN to DA9063 ...\n");
+                               "Sending SHUTDOWN to PMIC ...\n");
                        error = regmap_write(onkey->regmap,
                                             config->onkey_shutdown,
                                             config->onkey_shutdown_mask);
                        if (error)
                                dev_err(&onkey->input->dev,
-                                       "Cannot SHUTDOWN DA9063: %d\n",
+                                       "Cannot SHUTDOWN PMIC: %d\n",
                                        error);
                }
        }
@@ -300,6 +300,6 @@ static struct platform_driver da9063_onkey_driver = {
 module_platform_driver(da9063_onkey_driver);
 
 MODULE_AUTHOR("S Twiss <stwiss.opensource@diasemi.com>");
-MODULE_DESCRIPTION("Onkey device driver for Dialog DA9063 and DA9062");
+MODULE_DESCRIPTION("Onkey device driver for Dialog DA9063, DA9062 and DA9061");
 MODULE_LICENSE("GPL");
 MODULE_ALIAS("platform:" DA9063_DRVNAME_ONKEY);