mirror of https://gitee.com/openkylin/linux.git
video: xilinxfb: Remove redundant dev_set_drvdata
Driver core sets driver data to NULL upon failure or remove. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
3e3d2225ae
commit
090fd59308
|
@ -369,7 +369,6 @@ static int xilinxfb_assign(struct platform_device *pdev,
|
||||||
|
|
||||||
err_region:
|
err_region:
|
||||||
kfree(drvdata);
|
kfree(drvdata);
|
||||||
dev_set_drvdata(dev, NULL);
|
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
@ -404,7 +403,6 @@ static int xilinxfb_release(struct device *dev)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
kfree(drvdata);
|
kfree(drvdata);
|
||||||
dev_set_drvdata(dev, NULL);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue