]> www.infradead.org Git - users/dwmw2/linux.git/commit
gpio: label descriptors using the device name
authorLinus Walleij <linus.walleij@linaro.org>
Thu, 4 Jan 2018 21:31:11 +0000 (22:31 +0100)
committerSasha Levin <alexander.levin@microsoft.com>
Wed, 23 May 2018 01:36:26 +0000 (21:36 -0400)
commit107eebc32b8fd775207f9d6df7663b74c17306d4
tree243d7d8a6b9be06cd9ffb21798377fd6c57f1065
parente9561b5da355e80c937c022c38b76650ac121f45
gpio: label descriptors using the device name

[ Upstream commit 24e78079bf2250874e33da2e7cfbb6db72d3caf4 ]

Some GPIO lines appear named "?" in the lsgpio dump due to their
requesting drivers not passing a reasonable label.

Most typically this happens if a device tree node just defines
gpios = <...> and not foo-gpios = <...>, the former gets named
"foo" and the latter gets named "?".

However the struct device passed in is always valid so let's
just label the GPIO with dev_name() on the device if no proper
label was passed.

Cc: Reported-by: Jason Kridner <jkridner@beagleboard.org>
Reported-by: Jason Kridner <jkridner@beagleboard.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/gpio/gpiolib.c