Browse Source

dma: ipu: 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: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Jingoo Han 12 years ago
parent
commit
4d1b80bf7a
1 changed files with 0 additions and 1 deletions
  1. 0 1
      drivers/dma/ipu/ipu_idmac.c

+ 0 - 1
drivers/dma/ipu/ipu_idmac.c

@@ -1764,7 +1764,6 @@ static int ipu_remove(struct platform_device *pdev)
 	iounmap(ipu->reg_ic);
 	iounmap(ipu->reg_ipu);
 	tasklet_kill(&ipu->tasklet);
-	platform_set_drvdata(pdev, NULL);
 
 	return 0;
 }