diff options
author | Archit Taneja <archit@ti.com> | 2012-06-29 05:11:30 -0400 |
---|---|---|
committer | Archit Taneja <archit@ti.com> | 2012-06-29 06:57:58 -0400 |
commit | dd88b7a67736db931041009886ba5204cdf3de16 (patch) | |
tree | 6468fdde6d3dc0caddf7a43557018900695ea77f /drivers/video | |
parent | 75bac5d1a2776d61a64d75fd19092dff724016a0 (diff) |
OMAPDSS: DISPC: Remove a redundant function
dss_mgr_is_lcd() available in dss.h does the same thing as dispc_mgr_is_lcd()
in dispc.c. Remove the function from dispc.c and replace it with the one in
dss.h.
Signed-off-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/omap2/dss/dispc.c | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c index 738ad779436f..5b289c5f695b 100644 --- a/drivers/video/omap2/dss/dispc.c +++ b/drivers/video/omap2/dss/dispc.c | |||
@@ -498,16 +498,6 @@ void dispc_runtime_put(void) | |||
498 | WARN_ON(r < 0 && r != -ENOSYS); | 498 | WARN_ON(r < 0 && r != -ENOSYS); |
499 | } | 499 | } |
500 | 500 | ||
501 | static inline bool dispc_mgr_is_lcd(enum omap_channel channel) | ||
502 | { | ||
503 | if (channel == OMAP_DSS_CHANNEL_LCD || | ||
504 | channel == OMAP_DSS_CHANNEL_LCD2 || | ||
505 | channel == OMAP_DSS_CHANNEL_LCD3) | ||
506 | return true; | ||
507 | else | ||
508 | return false; | ||
509 | } | ||
510 | |||
511 | u32 dispc_mgr_get_vsync_irq(enum omap_channel channel) | 501 | u32 dispc_mgr_get_vsync_irq(enum omap_channel channel) |
512 | { | 502 | { |
513 | return mgr_desc[channel].vsync_irq; | 503 | return mgr_desc[channel].vsync_irq; |
@@ -1010,7 +1000,7 @@ static void dispc_mgr_set_cpr_coef(enum omap_channel channel, | |||
1010 | { | 1000 | { |
1011 | u32 coef_r, coef_g, coef_b; | 1001 | u32 coef_r, coef_g, coef_b; |
1012 | 1002 | ||
1013 | if (!dispc_mgr_is_lcd(channel)) | 1003 | if (!dss_mgr_is_lcd(channel)) |
1014 | return; | 1004 | return; |
1015 | 1005 | ||
1016 | coef_r = FLD_VAL(coefs->rr, 31, 22) | FLD_VAL(coefs->rg, 20, 11) | | 1006 | coef_r = FLD_VAL(coefs->rr, 31, 22) | FLD_VAL(coefs->rg, 20, 11) | |
@@ -1869,7 +1859,7 @@ static int check_horiz_timing_omap3(enum omap_channel channel, | |||
1869 | 1859 | ||
1870 | nonactive = t->x_res + t->hfp + t->hsw + t->hbp - out_width; | 1860 | nonactive = t->x_res + t->hfp + t->hsw + t->hbp - out_width; |
1871 | pclk = dispc_mgr_pclk_rate(channel); | 1861 | pclk = dispc_mgr_pclk_rate(channel); |
1872 | if (dispc_mgr_is_lcd(channel)) | 1862 | if (dss_mgr_is_lcd(channel)) |
1873 | lclk = dispc_mgr_lclk_rate(channel); | 1863 | lclk = dispc_mgr_lclk_rate(channel); |
1874 | else | 1864 | else |
1875 | lclk = dispc_fclk_rate(); | 1865 | lclk = dispc_fclk_rate(); |
@@ -2452,7 +2442,7 @@ bool dispc_mgr_is_enabled(enum omap_channel channel) | |||
2452 | 2442 | ||
2453 | void dispc_mgr_enable(enum omap_channel channel, bool enable) | 2443 | void dispc_mgr_enable(enum omap_channel channel, bool enable) |
2454 | { | 2444 | { |
2455 | if (dispc_mgr_is_lcd(channel)) | 2445 | if (dss_mgr_is_lcd(channel)) |
2456 | dispc_mgr_enable_lcd_out(channel, enable); | 2446 | dispc_mgr_enable_lcd_out(channel, enable); |
2457 | else if (channel == OMAP_DSS_CHANNEL_DIGIT) | 2447 | else if (channel == OMAP_DSS_CHANNEL_DIGIT) |
2458 | dispc_mgr_enable_digit_out(enable); | 2448 | dispc_mgr_enable_digit_out(enable); |
@@ -2642,7 +2632,7 @@ bool dispc_mgr_timings_ok(enum omap_channel channel, | |||
2642 | 2632 | ||
2643 | timings_ok = _dispc_mgr_size_ok(timings->x_res, timings->y_res); | 2633 | timings_ok = _dispc_mgr_size_ok(timings->x_res, timings->y_res); |
2644 | 2634 | ||
2645 | if (dispc_mgr_is_lcd(channel)) | 2635 | if (dss_mgr_is_lcd(channel)) |
2646 | timings_ok = timings_ok && _dispc_lcd_timings_ok(timings->hsw, | 2636 | timings_ok = timings_ok && _dispc_lcd_timings_ok(timings->hsw, |
2647 | timings->hfp, timings->hbp, | 2637 | timings->hfp, timings->hbp, |
2648 | timings->vsw, timings->vfp, | 2638 | timings->vsw, timings->vfp, |
@@ -2734,7 +2724,7 @@ void dispc_mgr_set_timings(enum omap_channel channel, | |||
2734 | return; | 2724 | return; |
2735 | } | 2725 | } |
2736 | 2726 | ||
2737 | if (dispc_mgr_is_lcd(channel)) { | 2727 | if (dss_mgr_is_lcd(channel)) { |
2738 | _dispc_mgr_set_lcd_timings(channel, t.hsw, t.hfp, t.hbp, t.vsw, | 2728 | _dispc_mgr_set_lcd_timings(channel, t.hsw, t.hfp, t.hbp, t.vsw, |
2739 | t.vfp, t.vbp, t.vsync_level, t.hsync_level, | 2729 | t.vfp, t.vbp, t.vsync_level, t.hsync_level, |
2740 | t.data_pclk_edge, t.de_level, t.sync_pclk_edge); | 2730 | t.data_pclk_edge, t.de_level, t.sync_pclk_edge); |
@@ -2840,7 +2830,7 @@ unsigned long dispc_mgr_pclk_rate(enum omap_channel channel) | |||
2840 | { | 2830 | { |
2841 | unsigned long r; | 2831 | unsigned long r; |
2842 | 2832 | ||
2843 | if (dispc_mgr_is_lcd(channel)) { | 2833 | if (dss_mgr_is_lcd(channel)) { |
2844 | int pcd; | 2834 | int pcd; |
2845 | u32 l; | 2835 | u32 l; |
2846 | 2836 | ||