linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] gpio: gpio-wcove: Fix GPIO control register offset calculation
@ 2017-06-14 21:39 sathyanarayanan.kuppuswamy
  2017-06-15  9:06 ` Andy Shevchenko
  0 siblings, 1 reply; 3+ messages in thread
From: sathyanarayanan.kuppuswamy @ 2017-06-14 21:39 UTC (permalink / raw)
  To: linus.walleij
  Cc: linux-gpio, linux-kernel, sathyaosid, Kuppuswamy Sathyanarayanan

From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>

According to Whiskey Cove PMIC GPIO controller specification, for GPIO
pins 0-12, GPIO input and output register control address range from,

0x4e44-0x4e50 for GPIO outputs control register

0x4e51-0x4e5d for GPIO input control register

But, currently when calculating the GPIO register offsets in to_reg()
function, all GPIO pins in the same bank uses the same GPIO control
register address. This logic is incorrect. This patch fixes this
issue.

This patch also adds support to selectively skip register modification
for virtual GPIOs.

In case of Whiskey Cove PMIC, ACPI code may use up 94 virtual GPIOs.
These virtual GPIOs are used by the ACPI code as means to access various
non GPIO bits of PMIC. So for these virtual GPIOs, we don't need to
manipulate the physical GPIO pin register. A similar patch has been
merged recently by Hans for Crystal Cove PMIC GPIO driver. You can
find more details about it in Commit 9a752b4c9ab9 ("gpio: crystalcove:
Do not write regular gpio registers for virtual GPIOs")

Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Reported-by: Jukka Laitinen <jukka.laitinen@intel.com>
---
 drivers/gpio/gpio-wcove.c | 82 +++++++++++++++++++++++++++++++++--------------
 1 file changed, 58 insertions(+), 24 deletions(-)

diff --git a/drivers/gpio/gpio-wcove.c b/drivers/gpio/gpio-wcove.c
index 7b1bc20..8d61232 100644
--- a/drivers/gpio/gpio-wcove.c
+++ b/drivers/gpio/gpio-wcove.c
@@ -108,19 +108,21 @@ struct wcove_gpio {
 static inline unsigned int to_reg(int gpio, enum ctrl_register reg_type)
 {
 	unsigned int reg;
-	int bank;
 
-	if (gpio < BANK0_NR_PINS)
-		bank = 0;
-	else if (gpio < BANK0_NR_PINS + BANK1_NR_PINS)
-		bank = 1;
-	else
-		bank = 2;
+	if (gpio >= WCOVE_GPIO_NUM)
+		return -EOPNOTSUPP;
 
 	if (reg_type == CTRL_IN)
-		reg = GPIO_IN_CTRL_BASE + bank;
+		/*
+		 * GPIO input control registers
+		 * (one per pin): 0x4e51 - 0x4e5d
+		 */
+		reg = GPIO_IN_CTRL_BASE + gpio;
 	else
-		reg = GPIO_OUT_CTRL_BASE + bank;
+		/* GPIO output control registers
+		 * (one per pin): 0x4e44 - 0x4e50
+		 */
+		reg = GPIO_OUT_CTRL_BASE + gpio;
 
 	return reg;
 }
@@ -145,7 +147,10 @@ static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio)
 
 static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
 {
-	unsigned int reg = to_reg(gpio, CTRL_IN);
+	int reg = to_reg(gpio, CTRL_IN);
+
+	if (reg < 0)
+		return;
 
 	regmap_update_bits(wg->regmap, reg, CTLI_INTCNT_BE, wg->intcnt);
 }
@@ -153,27 +158,36 @@ static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
 static int wcove_gpio_dir_in(struct gpio_chip *chip, unsigned int gpio)
 {
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
+	int reg = to_reg(gpio, CTRL_OUT);
+
+	if (reg < 0)
+		return 0;
 
-	return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
-			    CTLO_INPUT_SET);
+	return regmap_write(wg->regmap, reg, CTLO_INPUT_SET);
 }
 
 static int wcove_gpio_dir_out(struct gpio_chip *chip, unsigned int gpio,
 				    int value)
 {
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
+	int reg = to_reg(gpio, CTRL_OUT);
 
-	return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
-			    CTLO_OUTPUT_SET | value);
+	if (reg < 0)
+		return 0;
+
+	return regmap_write(wg->regmap, reg, CTLO_OUTPUT_SET | value);
 }
 
 static int wcove_gpio_get_direction(struct gpio_chip *chip, unsigned int gpio)
 {
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
 	unsigned int val;
-	int ret;
+	int ret, reg = to_reg(gpio, CTRL_OUT);
+
+	if (reg < 0)
+		return 0;
 
-	ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &val);
+	ret = regmap_read(wg->regmap, reg, &val);
 	if (ret)
 		return ret;
 
@@ -184,9 +198,12 @@ static int wcove_gpio_get(struct gpio_chip *chip, unsigned int gpio)
 {
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
 	unsigned int val;
-	int ret;
+	int ret, reg = to_reg(gpio, CTRL_IN);
+
+	if (reg < 0)
+		return 0;
 
-	ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &val);
+	ret = regmap_read(wg->regmap, reg, &val);
 	if (ret)
 		return ret;
 
@@ -197,25 +214,33 @@ static void wcove_gpio_set(struct gpio_chip *chip,
 				 unsigned int gpio, int value)
 {
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
+	int reg = to_reg(gpio, CTRL_OUT);
+
+	if (reg < 0)
+		return;
 
 	if (value)
-		regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 1);
+		regmap_update_bits(wg->regmap, reg, 1, 1);
 	else
-		regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 0);
+		regmap_update_bits(wg->regmap, reg, 1, 0);
 }
 
 static int wcove_gpio_set_config(struct gpio_chip *chip, unsigned int gpio,
 				 unsigned long config)
 {
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
+	int reg = to_reg(gpio, CTRL_OUT);
+
+	if (reg < 0)
+		return 0;
 
 	switch (pinconf_to_config_param(config)) {
 	case PIN_CONFIG_DRIVE_OPEN_DRAIN:
-		return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
-						CTLO_DRV_MASK, CTLO_DRV_OD);
+		return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
+					  CTLO_DRV_OD);
 	case PIN_CONFIG_DRIVE_PUSH_PULL:
-		return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
-						CTLO_DRV_MASK, CTLO_DRV_CMOS);
+		return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
+					  CTLO_DRV_CMOS);
 	default:
 		break;
 	}
@@ -228,6 +253,9 @@ static int wcove_irq_type(struct irq_data *data, unsigned int type)
 	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
 
+	if (data->hwirq >= WCOVE_GPIO_NUM)
+		return 0;
+
 	switch (type) {
 	case IRQ_TYPE_NONE:
 		wg->intcnt = CTLI_INTCNT_DIS;
@@ -278,6 +306,9 @@ static void wcove_irq_unmask(struct irq_data *data)
 	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
 
+	if (data->hwirq >= WCOVE_GPIO_NUM)
+		return;
+
 	wg->set_irq_mask = false;
 	wg->update |= UPDATE_IRQ_MASK;
 }
@@ -287,6 +318,9 @@ static void wcove_irq_mask(struct irq_data *data)
 	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
 	struct wcove_gpio *wg = gpiochip_get_data(chip);
 
+	if (data->hwirq >= WCOVE_GPIO_NUM)
+		return;
+
 	wg->set_irq_mask = true;
 	wg->update |= UPDATE_IRQ_MASK;
 }
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v1 1/1] gpio: gpio-wcove: Fix GPIO control register offset calculation
  2017-06-14 21:39 [PATCH v1 1/1] gpio: gpio-wcove: Fix GPIO control register offset calculation sathyanarayanan.kuppuswamy
@ 2017-06-15  9:06 ` Andy Shevchenko
  2017-06-15 20:53   ` sathyanarayanan kuppuswamy
  0 siblings, 1 reply; 3+ messages in thread
From: Andy Shevchenko @ 2017-06-15  9:06 UTC (permalink / raw)
  To: Kuppuswamy Sathyanarayanan
  Cc: Linus Walleij, linux-gpio, linux-kernel,
	Sathyanarayanan Kuppuswamy Natarajan

On Thu, Jun 15, 2017 at 12:39 AM,
<sathyanarayanan.kuppuswamy@linux.intel.com> wrote:
> From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
>
> According to Whiskey Cove PMIC GPIO controller specification, for GPIO
> pins 0-12, GPIO input and output register control address range from,
>
> 0x4e44-0x4e50 for GPIO outputs control register
>
> 0x4e51-0x4e5d for GPIO input control register
>
> But, currently when calculating the GPIO register offsets in to_reg()
> function, all GPIO pins in the same bank uses the same GPIO control
> register address. This logic is incorrect. This patch fixes this
> issue.
>
> This patch also adds support to selectively skip register modification
> for virtual GPIOs.
>
> In case of Whiskey Cove PMIC, ACPI code may use up 94 virtual GPIOs.
> These virtual GPIOs are used by the ACPI code as means to access various
> non GPIO bits of PMIC. So for these virtual GPIOs, we don't need to
> manipulate the physical GPIO pin register. A similar patch has been
> merged recently by Hans for Crystal Cove PMIC GPIO driver. You can
> find more details about it in Commit 9a752b4c9ab9 ("gpio: crystalcove:
> Do not write regular gpio registers for virtual GPIOs")
>
> Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
> Reported-by: Jukka Laitinen <jukka.laitinen@intel.com>

It seems it should have a Fixes tag.

>  static inline unsigned int to_reg(int gpio, enum ctrl_register reg_type)
>  {
>         unsigned int reg;
> -       int bank;
>
> -       if (gpio < BANK0_NR_PINS)
> -               bank = 0;
> -       else if (gpio < BANK0_NR_PINS + BANK1_NR_PINS)
> -               bank = 1;
> -       else
> -               bank = 2;

> +       if (gpio >= WCOVE_GPIO_NUM)
> +               return -EOPNOTSUPP;

How this can happen?

>
>         if (reg_type == CTRL_IN)
> -               reg = GPIO_IN_CTRL_BASE + bank;

> +               /*
> +                * GPIO input control registers
> +                * (one per pin): 0x4e51 - 0x4e5d
> +                */

Noise.

> +               reg = GPIO_IN_CTRL_BASE + gpio;
>         else
> -               reg = GPIO_OUT_CTRL_BASE + bank;

> +               /* GPIO output control registers
> +                * (one per pin): 0x4e44 - 0x4e50
> +                */

Wrong multi-line comment and noise overall.

If you wish to leave the comments, put them on top of the function as
its description.

> +               reg = GPIO_OUT_CTRL_BASE + gpio;
>
>         return reg;
>  }
> @@ -145,7 +147,10 @@ static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio)
>
>  static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
>  {
> -       unsigned int reg = to_reg(gpio, CTRL_IN);

> +       int reg = to_reg(gpio, CTRL_IN);
> +
> +       if (reg < 0)
> +               return;

Since above comment this change would gone.

> +       int reg = to_reg(gpio, CTRL_OUT);
> +
> +       if (reg < 0)
> +               return 0;
>
> -       return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
> -                           CTLO_INPUT_SET);
> +       return regmap_write(wg->regmap, reg, CTLO_INPUT_SET);

Ditto.

> +       int reg = to_reg(gpio, CTRL_OUT);
>
> -       return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
> -                           CTLO_OUTPUT_SET | value);
> +       if (reg < 0)
> +               return 0;
> +
> +       return regmap_write(wg->regmap, reg, CTLO_OUTPUT_SET | value);

Ditto.

> +       int ret, reg = to_reg(gpio, CTRL_OUT);

Don't fit such variable on one line.

> +
> +       if (reg < 0)
> +               return 0;
>
> -       ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &val);
> +       ret = regmap_read(wg->regmap, reg, &val);

This would gone after addressing first comment.

> -       int ret;
> +       int ret, reg = to_reg(gpio, CTRL_IN);
> +
> +       if (reg < 0)
> +               return 0;
>
> -       ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &val);
> +       ret = regmap_read(wg->regmap, reg, &val);

Ditto.

> +       int reg = to_reg(gpio, CTRL_OUT);
> +
> +       if (reg < 0)
> +               return;
>
>         if (value)
> -               regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 1);
> +               regmap_update_bits(wg->regmap, reg, 1, 1);
>         else
> -               regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 0);
> +               regmap_update_bits(wg->regmap, reg, 1, 0);

Ditto.

> +       int reg = to_reg(gpio, CTRL_OUT);
> +
> +       if (reg < 0)
> +               return 0;
>
>         switch (pinconf_to_config_param(config)) {
>         case PIN_CONFIG_DRIVE_OPEN_DRAIN:
> -               return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
> -                                               CTLO_DRV_MASK, CTLO_DRV_OD);
> +               return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
> +                                         CTLO_DRV_OD);
>         case PIN_CONFIG_DRIVE_PUSH_PULL:
> -               return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
> -                                               CTLO_DRV_MASK, CTLO_DRV_CMOS);
> +               return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
> +                                         CTLO_DRV_CMOS);

Ditto.

> +       if (data->hwirq >= WCOVE_GPIO_NUM)
> +               return 0;
> +

How could it happen?

> +       if (data->hwirq >= WCOVE_GPIO_NUM)
> +               return;

Ditto.

> +       if (data->hwirq >= WCOVE_GPIO_NUM)
> +               return;

Ditto.

-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v1 1/1] gpio: gpio-wcove: Fix GPIO control register offset calculation
  2017-06-15  9:06 ` Andy Shevchenko
@ 2017-06-15 20:53   ` sathyanarayanan kuppuswamy
  0 siblings, 0 replies; 3+ messages in thread
From: sathyanarayanan kuppuswamy @ 2017-06-15 20:53 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Linus Walleij, linux-gpio, linux-kernel,
	Sathyanarayanan Kuppuswamy Natarajan

Hi Andy,


On 06/15/2017 02:06 AM, Andy Shevchenko wrote:
> On Thu, Jun 15, 2017 at 12:39 AM,
> <sathyanarayanan.kuppuswamy@linux.intel.com> wrote:
>> From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
>>
>> According to Whiskey Cove PMIC GPIO controller specification, for GPIO
>> pins 0-12, GPIO input and output register control address range from,
>>
>> 0x4e44-0x4e50 for GPIO outputs control register
>>
>> 0x4e51-0x4e5d for GPIO input control register
>>
>> But, currently when calculating the GPIO register offsets in to_reg()
>> function, all GPIO pins in the same bank uses the same GPIO control
>> register address. This logic is incorrect. This patch fixes this
>> issue.
>>
>> This patch also adds support to selectively skip register modification
>> for virtual GPIOs.
>>
>> In case of Whiskey Cove PMIC, ACPI code may use up 94 virtual GPIOs.
>> These virtual GPIOs are used by the ACPI code as means to access various
>> non GPIO bits of PMIC. So for these virtual GPIOs, we don't need to
>> manipulate the physical GPIO pin register. A similar patch has been
>> merged recently by Hans for Crystal Cove PMIC GPIO driver. You can
>> find more details about it in Commit 9a752b4c9ab9 ("gpio: crystalcove:
>> Do not write regular gpio registers for virtual GPIOs")
>>
>> Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
>> Reported-by: Jukka Laitinen <jukka.laitinen@intel.com>
> It seems it should have a Fixes tag.
This issue exist from the first commit. Should I add fixes tag for it ?
>
>>   static inline unsigned int to_reg(int gpio, enum ctrl_register reg_type)
>>   {
>>          unsigned int reg;
>> -       int bank;
>>
>> -       if (gpio < BANK0_NR_PINS)
>> -               bank = 0;
>> -       else if (gpio < BANK0_NR_PINS + BANK1_NR_PINS)
>> -               bank = 1;
>> -       else
>> -               bank = 2;
>> +       if (gpio >= WCOVE_GPIO_NUM)
>> +               return -EOPNOTSUPP;
> How this can happen?
Whiskey Cove PMIC only has 13 real GPIO pins. But if you look at the 
gpio chip configuration in gpio-wcove.c driver, ngpio value is set as 94.

wg->chip.ngpio = WCOVE_VGPIO_NUM; // 94

So, 0 < gpio index < 13 are real GPIOs  and  13 <= gpio index <  94 are 
virtual GPIOs.  So for these virtual GPIOs we don't have any real 
configuration registers in the hardware. That's why we should skip 
register modifications for any GPIO pin index >= WCOVE_GPIO_NUM.


>>          if (reg_type == CTRL_IN)
>> -               reg = GPIO_IN_CTRL_BASE + bank;
>> +               /*
>> +                * GPIO input control registers
>> +                * (one per pin): 0x4e51 - 0x4e5d
>> +                */
> Noise.
Will remove it.
>
>> +               reg = GPIO_IN_CTRL_BASE + gpio;
>>          else
>> -               reg = GPIO_OUT_CTRL_BASE + bank;
>> +               /* GPIO output control registers
>> +                * (one per pin): 0x4e44 - 0x4e50
>> +                */
> Wrong multi-line comment and noise overall.
>
> If you wish to leave the comments, put them on top of the function as
> its description.
I will just remove it.
>
>> +               reg = GPIO_OUT_CTRL_BASE + gpio;
>>
>>          return reg;
>>   }
>> @@ -145,7 +147,10 @@ static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio)
>>
>>   static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
>>   {
>> -       unsigned int reg = to_reg(gpio, CTRL_IN);
>> +       int reg = to_reg(gpio, CTRL_IN);
>> +
>> +       if (reg < 0)
>> +               return;
> Since above comment this change would gone.
>
>> +       int reg = to_reg(gpio, CTRL_OUT);
>> +
>> +       if (reg < 0)
>> +               return 0;
>>
>> -       return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
>> -                           CTLO_INPUT_SET);
>> +       return regmap_write(wg->regmap, reg, CTLO_INPUT_SET);
> Ditto.
>
>> +       int reg = to_reg(gpio, CTRL_OUT);
>>
>> -       return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
>> -                           CTLO_OUTPUT_SET | value);
>> +       if (reg < 0)
>> +               return 0;
>> +
>> +       return regmap_write(wg->regmap, reg, CTLO_OUTPUT_SET | value);
> Ditto.
>
>> +       int ret, reg = to_reg(gpio, CTRL_OUT);
> Don't fit such variable on one line.
>
>> +
>> +       if (reg < 0)
>> +               return 0;
>>
>> -       ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &val);
>> +       ret = regmap_read(wg->regmap, reg, &val);
> This would gone after addressing first comment.
>
>> -       int ret;
>> +       int ret, reg = to_reg(gpio, CTRL_IN);
>> +
>> +       if (reg < 0)
>> +               return 0;
>>
>> -       ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &val);
>> +       ret = regmap_read(wg->regmap, reg, &val);
> Ditto.
>
>> +       int reg = to_reg(gpio, CTRL_OUT);
>> +
>> +       if (reg < 0)
>> +               return;
>>
>>          if (value)
>> -               regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 1);
>> +               regmap_update_bits(wg->regmap, reg, 1, 1);
>>          else
>> -               regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 0);
>> +               regmap_update_bits(wg->regmap, reg, 1, 0);
> Ditto.
>
>> +       int reg = to_reg(gpio, CTRL_OUT);
>> +
>> +       if (reg < 0)
>> +               return 0;
>>
>>          switch (pinconf_to_config_param(config)) {
>>          case PIN_CONFIG_DRIVE_OPEN_DRAIN:
>> -               return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
>> -                                               CTLO_DRV_MASK, CTLO_DRV_OD);
>> +               return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
>> +                                         CTLO_DRV_OD);
>>          case PIN_CONFIG_DRIVE_PUSH_PULL:
>> -               return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
>> -                                               CTLO_DRV_MASK, CTLO_DRV_CMOS);
>> +               return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
>> +                                         CTLO_DRV_CMOS);
> Ditto.
>
>> +       if (data->hwirq >= WCOVE_GPIO_NUM)
>> +               return 0;
>> +
> How could it happen?
>
>> +       if (data->hwirq >= WCOVE_GPIO_NUM)
>> +               return;
> Ditto.
>
>> +       if (data->hwirq >= WCOVE_GPIO_NUM)
>> +               return;
> Ditto.
>

-- 
Sathyanarayanan Kuppuswamy
Linux kernel developer

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-15 20:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-14 21:39 [PATCH v1 1/1] gpio: gpio-wcove: Fix GPIO control register offset calculation sathyanarayanan.kuppuswamy
2017-06-15  9:06 ` Andy Shevchenko
2017-06-15 20:53   ` sathyanarayanan kuppuswamy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).