[PATCH v3] fbdev: fsl-diu-fb: add missing device_remove_file()

From: oushixiong1025
Date: Sun Mar 09 2025 - 22:10:21 EST


From: Shixiong Ou <oushixiong@xxxxxxxxxx>

Call device_remove_file() when driver remove.

Signed-off-by: Shixiong Ou <oushixiong@xxxxxxxxxx>
---
v1->v2:
add has_dev_attrs flag.
v2->v3:
drop those extra checks.

drivers/video/fbdev/fsl-diu-fb.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/video/fbdev/fsl-diu-fb.c b/drivers/video/fbdev/fsl-diu-fb.c
index 5ac8201c3533..b71d15794ce8 100644
--- a/drivers/video/fbdev/fsl-diu-fb.c
+++ b/drivers/video/fbdev/fsl-diu-fb.c
@@ -1827,6 +1827,7 @@ static void fsl_diu_remove(struct platform_device *pdev)
int i;

data = dev_get_drvdata(&pdev->dev);
+ device_remove_file(&pdev->dev, &data->dev_attr);
disable_lcdc(&data->fsl_diu_info[0]);

free_irq(data->irq, data->diu_reg);
--
2.25.1