input: clps711x-keypad: Changing the compatibility string to match with the smallest...
authorAlexander Shiyan <shc_work@mail.ru>
Sat, 4 Jun 2016 07:10:01 +0000 (10:10 +0300)
committerArnd Bergmann <arnd@arndb.de>
Wed, 6 Jul 2016 15:38:18 +0000 (17:38 +0200)
This patch changes the compatibility string to match with the smallest
supported chip (EP7209). Since the DT-support for this CPU is not yet
announced, this change is safe.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Documentation/devicetree/bindings/input/clps711x-keypad.txt
drivers/input/keyboard/clps711x-keypad.c

index e68d2bbc6c075134737de8de9b2204f2cfc6deac..3eed8819d05d6345c2fc8e5a36e365131b2c4663 100644 (file)
@@ -1,7 +1,7 @@
 * Cirrus Logic CLPS711X matrix keypad device tree bindings
 
 Required Properties:
-- compatible:    Shall contain "cirrus,clps711x-keypad".
+- compatible:    Shall contain "cirrus,ep7209-keypad".
 - row-gpios:     List of GPIOs used as row lines.
 - poll-interval: Poll interval time in milliseconds.
 - linux,keymap:  The definition can be found at
@@ -12,7 +12,7 @@ Optional Properties:
 
 Example:
        keypad {
-               compatible = "cirrus,ep7312-keypad", "cirrus,clps711x-keypad";
+               compatible = "cirrus,ep7312-keypad", "cirrus,ep7209-keypad";
                autorepeat;
                poll-interval = <120>;
                row-gpios = <&porta 0 0>,
index b637f1af842e475369db39056c8579583422a660..997e3e97f573419c1e3d17429ecffaf5c0f43dba 100644 (file)
@@ -101,7 +101,7 @@ static int clps711x_keypad_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        priv->syscon =
-               syscon_regmap_lookup_by_compatible("cirrus,clps711x-syscon1");
+               syscon_regmap_lookup_by_compatible("cirrus,ep7209-syscon1");
        if (IS_ERR(priv->syscon))
                return PTR_ERR(priv->syscon);
 
@@ -181,7 +181,7 @@ static int clps711x_keypad_remove(struct platform_device *pdev)
 }
 
 static const struct of_device_id clps711x_keypad_of_match[] = {
-       { .compatible = "cirrus,clps711x-keypad", },
+       { .compatible = "cirrus,ep7209-keypad", },
        { }
 };
 MODULE_DEVICE_TABLE(of, clps711x_keypad_of_match);