]> Git Repo - u-boot.git/commitdiff
gpio: slg7xl45106: Update gpio desc flags from DT
authorT Karthik Reddy <[email protected]>
Wed, 30 Mar 2022 09:07:56 +0000 (11:07 +0200)
committerMichal Simek <[email protected]>
Tue, 5 Apr 2022 13:13:13 +0000 (15:13 +0200)
In current slg7xl45106 gpio driver xlate() function we are not updating
gpio flags from DT. Read the given flag from DT and update the gpio desc
flags variable with required gpio direction state.

Signed-off-by: T Karthik Reddy <[email protected]>
Signed-off-by: Michal Simek <[email protected]>
Link: https://lore.kernel.org/r/a8d7b4799337bd99f61ace509889f02b192a9414.1648631275.git.michal.simek@xilinx.com
drivers/gpio/gpio_slg7xl45106.c

index 2cbf7488ad62d62d966453f54e4164d9635ad512..4ad06c18b4bdcf4391d999bf72dbf4a11e71e2dd 100644 (file)
@@ -11,6 +11,7 @@
 #include <asm/gpio.h>
 #include <dm.h>
 #include <i2c.h>
+#include <dt-bindings/gpio/gpio.h>
 #include <asm/arch/hardware.h>
 
 #define SLG7XL45106_REG                0xdb
@@ -26,6 +27,7 @@ static int slg7xl45106_i2c_gpo_xlate(struct udevice *dev,
                                     struct ofnode_phandle_args *args)
 {
        desc->offset = (unsigned int)args->args[0];
+       desc->flags = (args->args[1] & GPIO_ACTIVE_LOW ? GPIOD_ACTIVE_LOW : 0);
 
        return 0;
 }
This page took 0.033287 seconds and 4 git commands to generate.