gpio: sta2x11: remove platform_set_drvdata() + cleanup probe
authorAlexandru Ardelean <aardelean@deviqon.com>
Sun, 16 May 2021 06:23:15 +0000 (09:23 +0300)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 25 May 2021 14:15:21 +0000 (16:15 +0200)
commitf716f1fb84a48cc80c1dc486f52ebc092d8d834b
tree789a3c9a2700a3db96f861292d0f47efaed03930
parent52f39cfee66d1878d91a3fdb97d47557af4da0f8
gpio: sta2x11: remove platform_set_drvdata() + cleanup probe

The platform_set_drvdata() call is only useful if we need to retrieve back
the private information.
Since the driver doesn't do that, it's not useful to have it.

If this is removed, we can also just do a direct return on
devm_gpiochip_add_data(). We don't need to print that this call failed as
there are other ways to log/see this during probe.

Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/gpio-sta2x11.c