gpio: of: Check propname before applying "cs-gpios" quirks
[linux-2.6-block.git] / drivers / gpio / gpiolib-of.c
index 8b9c3ab70f6eade458a501184ce764454819043d..ee7f08386a720d2148e5589c19a287fd12447b16 100644 (file)
@@ -120,7 +120,8 @@ static void of_gpio_flags_quirks(struct device_node *np,
         * to determine if the flags should have inverted semantics.
         */
        if (IS_ENABLED(CONFIG_SPI_MASTER) &&
-           of_property_read_bool(np, "cs-gpios")) {
+           of_property_read_bool(np, "cs-gpios") &&
+           !strcmp(propname, "cs-gpios")) {
                struct device_node *child;
                u32 cs;
                int ret;