aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-09-11 16:59:04 -0400
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2012-03-12 17:40:48 -0400
commitaa7b5b0b2db6d33a8104e411cb74c15a4983b286 (patch)
tree669d769448c8d76434be2e6e320c002e1ac15b71 /drivers
parentca0a0cd7986e1704d5c60be9ae096ba51b2084f7 (diff)
fbdev: sh_mobile_lcdc: Remove board configuration owner field
The field is unused, remove it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/sh_mobile_lcdcfb.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c
index a2e0903466b3..a899b6df46cc 100644
--- a/drivers/video/sh_mobile_lcdcfb.c
+++ b/drivers/video/sh_mobile_lcdcfb.c
@@ -345,20 +345,16 @@ static void sh_mobile_lcdc_display_on(struct sh_mobile_lcdc_chan *ch)
345 } 345 }
346 346
347 /* HDMI must be enabled before LCDC configuration */ 347 /* HDMI must be enabled before LCDC configuration */
348 if (board_cfg->display_on && try_module_get(board_cfg->owner)) { 348 if (board_cfg->display_on)
349 board_cfg->display_on(board_cfg->board_data, ch->info); 349 board_cfg->display_on(board_cfg->board_data, ch->info);
350 module_put(board_cfg->owner);
351 }
352} 350}
353 351
354static void sh_mobile_lcdc_display_off(struct sh_mobile_lcdc_chan *ch) 352static void sh_mobile_lcdc_display_off(struct sh_mobile_lcdc_chan *ch)
355{ 353{
356 struct sh_mobile_lcdc_board_cfg *board_cfg = &ch->cfg.board_cfg; 354 struct sh_mobile_lcdc_board_cfg *board_cfg = &ch->cfg.board_cfg;
357 355
358 if (board_cfg->display_off && try_module_get(board_cfg->owner)) { 356 if (board_cfg->display_off)
359 board_cfg->display_off(board_cfg->board_data); 357 board_cfg->display_off(board_cfg->board_data);
360 module_put(board_cfg->owner);
361 }
362 358
363 if (ch->tx_dev) 359 if (ch->tx_dev)
364 ch->tx_dev->ops->display_off(ch->tx_dev); 360 ch->tx_dev->ops->display_off(ch->tx_dev);