mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 04:34:11 +08:00
gpio: tps68470: 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>
This commit is contained in:
parent
21dde316ca
commit
91d594b2db
@ -125,7 +125,6 @@ static const char *tps68470_names[TPS68470_N_GPIO] = {
|
|||||||
static int tps68470_gpio_probe(struct platform_device *pdev)
|
static int tps68470_gpio_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct tps68470_gpio_data *tps68470_gpio;
|
struct tps68470_gpio_data *tps68470_gpio;
|
||||||
int ret;
|
|
||||||
|
|
||||||
tps68470_gpio = devm_kzalloc(&pdev->dev, sizeof(*tps68470_gpio),
|
tps68470_gpio = devm_kzalloc(&pdev->dev, sizeof(*tps68470_gpio),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
@ -146,16 +145,7 @@ static int tps68470_gpio_probe(struct platform_device *pdev)
|
|||||||
tps68470_gpio->gc.base = -1;
|
tps68470_gpio->gc.base = -1;
|
||||||
tps68470_gpio->gc.parent = &pdev->dev;
|
tps68470_gpio->gc.parent = &pdev->dev;
|
||||||
|
|
||||||
ret = devm_gpiochip_add_data(&pdev->dev, &tps68470_gpio->gc,
|
return devm_gpiochip_add_data(&pdev->dev, &tps68470_gpio->gc, tps68470_gpio);
|
||||||
tps68470_gpio);
|
|
||||||
if (ret < 0) {
|
|
||||||
dev_err(&pdev->dev, "Failed to register gpio_chip: %d\n", ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
platform_set_drvdata(pdev, tps68470_gpio);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver tps68470_gpio_driver = {
|
static struct platform_driver tps68470_gpio_driver = {
|
||||||
|
Loading…
Reference in New Issue
Block a user