[PATCH] gpio: sim: don't use GPIO base in debugfs output

Bartosz Golaszewski posted 1 patch 1 month, 2 weeks ago
drivers/gpio/gpio-sim.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
[PATCH] gpio: sim: don't use GPIO base in debugfs output
Posted by Bartosz Golaszewski 1 month, 2 weeks ago
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

We're in the process of removing unneeded references to the global GPIO
base number treewide. Use the HW offset instead of the base number.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
 drivers/gpio/gpio-sim.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpio/gpio-sim.c b/drivers/gpio/gpio-sim.c
index 050092583f79..a83f5238427c 100644
--- a/drivers/gpio/gpio-sim.c
+++ b/drivers/gpio/gpio-sim.c
@@ -262,8 +262,7 @@ static void gpio_sim_dbg_show(struct seq_file *seq, struct gpio_chip *gc)
 	guard(mutex)(&chip->lock);
 
 	for_each_hwgpio(gc, i, label)
-		seq_printf(seq, " gpio-%-3d (%s) %s,%s\n",
-			   gc->base + i,
+		seq_printf(seq, " gpio-%-3d (%s) %s,%s\n", i,
 			   label ?: "<unused>",
 			   test_bit(i, chip->direction_map) ? "input" :
 				test_bit(i, chip->value_map) ? "output-high" :
-- 
2.48.1
Re: [PATCH] gpio: sim: don't use GPIO base in debugfs output
Posted by Bartosz Golaszewski 1 month, 1 week ago
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>


On Fri, 15 Aug 2025 13:17:33 +0200, Bartosz Golaszewski wrote:
> We're in the process of removing unneeded references to the global GPIO
> base number treewide. Use the HW offset instead of the base number.
> 
> 

Applied, thanks!

[1/1] gpio: sim: don't use GPIO base in debugfs output
      https://git.kernel.org/brgl/linux/c/a16a3cb07140a094ffd918290cef76135876b532

Best regards,
-- 
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Re: [PATCH] gpio: sim: don't use GPIO base in debugfs output
Posted by Linus Walleij 1 month, 2 weeks ago
On Fri, Aug 15, 2025 at 1:17 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:

> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> We're in the process of removing unneeded references to the global GPIO
> base number treewide. Use the HW offset instead of the base number.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij