Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 344596
b: refs/heads/master
c: f1a813d
h: refs/heads/master
v: v3
  • Loading branch information
Tomi Valkeinen committed Oct 29, 2012
1 parent 01e7507 commit 7475879
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3a979f8ad2014f6bff862b01d21ce151aa47968a
refs/heads/master: f1a813d35f5aa53290814b2c646972b4e89c733e
10 changes: 5 additions & 5 deletions trunk/drivers/video/omap2/dss/dispc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2595,7 +2595,7 @@ static void dispc_mgr_disable_isr(void *data, u32 mask)
complete(compl);
}

static void _enable_mgr_out(enum omap_channel channel, bool enable)
void dispc_mgr_enable(enum omap_channel channel, bool enable)
{
mgr_fld_write(channel, DISPC_MGR_FLD_ENABLE, enable);
/* flush posted write */
Expand All @@ -2609,7 +2609,7 @@ bool dispc_mgr_is_enabled(enum omap_channel channel)

static void dispc_mgr_enable_lcd_out(enum omap_channel channel)
{
_enable_mgr_out(channel, true);
dispc_mgr_enable(channel, true);
}

static void dispc_mgr_disable_lcd_out(enum omap_channel channel)
Expand All @@ -2633,7 +2633,7 @@ static void dispc_mgr_disable_lcd_out(enum omap_channel channel)
if (r)
DSSERR("failed to register FRAMEDONE isr\n");

_enable_mgr_out(channel, false);
dispc_mgr_enable(channel, false);

/* if we couldn't register for framedone, just sleep and exit */
if (r) {
Expand Down Expand Up @@ -2685,7 +2685,7 @@ static void dispc_mgr_enable_digit_out(void)
return;
}

_enable_mgr_out(OMAP_DSS_CHANNEL_DIGIT, true);
dispc_mgr_enable(OMAP_DSS_CHANNEL_DIGIT, true);

/* wait for the first evsync */
if (!wait_for_completion_timeout(&vsync_compl, msecs_to_jiffies(100)))
Expand Down Expand Up @@ -2735,7 +2735,7 @@ static void dispc_mgr_disable_digit_out(void)
if (r)
DSSERR("failed to register %x isr\n", irq_mask);

_enable_mgr_out(OMAP_DSS_CHANNEL_DIGIT, false);
dispc_mgr_enable(OMAP_DSS_CHANNEL_DIGIT, false);

/* if we couldn't register the irq, just sleep and exit */
if (r) {
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/video/omap2/dss/dss.h
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,7 @@ u32 dispc_mgr_get_framedone_irq(enum omap_channel channel);
u32 dispc_mgr_get_sync_lost_irq(enum omap_channel channel);
bool dispc_mgr_go_busy(enum omap_channel channel);
void dispc_mgr_go(enum omap_channel channel);
void dispc_mgr_enable(enum omap_channel channel, bool enable);
bool dispc_mgr_is_enabled(enum omap_channel channel);
void dispc_mgr_enable_sync(enum omap_channel channel);
void dispc_mgr_disable_sync(enum omap_channel channel);
Expand Down

0 comments on commit 7475879

Please sign in to comment.