[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1407163433-13528-1-git-send-email-pramod.gurav@smartplayin.com>
Date: Mon, 4 Aug 2014 20:13:53 +0530
From: Pramod Gurav <pramod.gurav@...rtplayin.com>
To: linux-fbdev@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: Pramod Gurav <pramod.gurav@...rtplayin.com>,
Jean-Christophe Plagniol-Villard <plagnioj@...osoft.com>,
Tomi Valkeinen <tomi.valkeinen@...com>,
Stephen Boyd <sboyd@...eaurora.org>,
Jingoo Han <jg1.han@...sung.com>,
Rob Clark <robdclark@...il.com>
Subject: [PATCH] msm: msm_fb: Add remove function for platform driver for clean unloading
This adds a remove function to platform driver structure so that
resources are released when driver is unloaded.
Moved kzalloc to use managed resource and adds a return check if failed.
CC: Jean-Christophe Plagniol-Villard <plagnioj@...osoft.com>
CC: Tomi Valkeinen <tomi.valkeinen@...com>
CC: Stephen Boyd <sboyd@...eaurora.org>
CC: Jingoo Han <jg1.han@...sung.com>
CC: Rob Clark <robdclark@...il.com>
Signed-off-by: Pramod Gurav <pramod.gurav@...rtplayin.com>
---
drivers/video/fbdev/msm/msm_fb.c | 28 +++++++++++++++++++++++++---
1 file changed, 25 insertions(+), 3 deletions(-)
diff --git a/drivers/video/fbdev/msm/msm_fb.c b/drivers/video/fbdev/msm/msm_fb.c
index 1374803..ac277e2 100644
--- a/drivers/video/fbdev/msm/msm_fb.c
+++ b/drivers/video/fbdev/msm/msm_fb.c
@@ -553,6 +553,7 @@ static int msmfb_probe(struct platform_device *pdev)
fb = framebuffer_alloc(sizeof(struct msmfb_info), &pdev->dev);
if (!fb)
return -ENOMEM;
+
msmfb = fb->par;
msmfb->fb = fb;
msmfb->panel = panel;
@@ -569,8 +570,13 @@ static int msmfb_probe(struct platform_device *pdev)
mutex_init(&msmfb->panel_init_lock);
init_waitqueue_head(&msmfb->frame_wq);
INIT_WORK(&msmfb->resume_work, power_on_panel);
- msmfb->black = kzalloc(msmfb->fb->var.bits_per_pixel*msmfb->xres,
- GFP_KERNEL);
+ msmfb->black = devm_kzalloc(&pdev->dev,
+ msmfb->fb->var.bits_per_pixel*msmfb->xres,
+ GFP_KERNEL);
+ if (!msmfb->black) {
+ ret = -ENOMEM;
+ goto error_register_framebuffer;
+ }
printk(KERN_INFO "msmfb_probe() installing %d x %d panel\n",
msmfb->xres, msmfb->yres);
@@ -589,6 +595,8 @@ static int msmfb_probe(struct platform_device *pdev)
msmfb->sleeping = WAKING;
+ platform_set_drvdata(pdev, msmfb);
+
return 0;
error_register_framebuffer:
@@ -598,13 +606,27 @@ error_setup_fbmem:
return ret;
}
+static int msmfb_remove(struct platform_device *pdev)
+{
+ struct msmfb_info *msmfb = NULL;
+
+ msmfb = platform_get_drvdata(pdev);
+ if (msmfb) {
+ unregister_framebuffer(msmfb->fb);
+ iounmap(msmfb->fb->screen_base);
+ framebuffer_release(msmfb->fb);
+ }
+
+ return 0;
+}
+
static struct platform_driver msm_panel_driver = {
/* need to write remove */
.probe = msmfb_probe,
+ .remove = msmfb_remove,
.driver = {.name = "msm_panel"},
};
-
static int msmfb_add_mdp_device(struct device *dev,
struct class_interface *class_intf)
{
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists