Browse Source

pinctrl: sh-pfc: remove unnecessary platform_set_drvdata()

The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Jingoo Han 12 years ago
parent
commit
db8ed17429
1 changed files with 0 additions and 2 deletions
  1. 0 2
      drivers/pinctrl/sh-pfc/core.c

+ 0 - 2
drivers/pinctrl/sh-pfc/core.c

@@ -539,8 +539,6 @@ static int sh_pfc_remove(struct platform_device *pdev)
 	if (pfc->info->ops && pfc->info->ops->exit)
 		pfc->info->ops->exit(pfc);
 
-	platform_set_drvdata(pdev, NULL);
-
 	return 0;
 }