aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/da8xx-fb.c
diff options
context:
space:
mode:
authorAfzal Mohammed <afzal@ti.com>2013-08-05 17:02:27 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-08-09 14:02:42 +0300
commitdbe8e48a3c70531b3befb11035dec30aec48c450 (patch)
treeb242fc80e0744980cf7c43a56c53b5a024791887 /drivers/video/da8xx-fb.c
parentvideo: da8xx-fb: pix clk and clk div handling cleanup (diff)
downloadlinux-dev-dbe8e48a3c70531b3befb11035dec30aec48c450.tar.xz
linux-dev-dbe8e48a3c70531b3befb11035dec30aec48c450.zip
video: da8xx-fb: store struct device *
store struct device pointer so that dev_dbg/err can be used outside of probe. Signed-off-by: Afzal Mohammed <afzal@ti.com> Signed-off-by: Darren Etheridge <detheridge@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/da8xx-fb.c')
-rw-r--r--drivers/video/da8xx-fb.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c
index 0fac1a0c8e55..7db109733fa1 100644
--- a/drivers/video/da8xx-fb.c
+++ b/drivers/video/da8xx-fb.c
@@ -150,6 +150,7 @@ static inline void lcdc_write(unsigned int val, unsigned int addr)
}
struct da8xx_fb_par {
+ struct device *dev;
resource_size_t p_palette_base;
unsigned char *v_palette_base;
dma_addr_t vram_phys;
@@ -1291,6 +1292,7 @@ static int fb_probe(struct platform_device *device)
}
par = da8xx_fb_info->par;
+ par->dev = &device->dev;
par->lcdc_clk = fb_clk;
par->lcd_fck_rate = clk_get_rate(fb_clk);
if (fb_pdata->panel_power_ctrl) {