diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-08-16 13:45:15 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-09-30 16:16:23 +0300 |
commit | 26d9dd0dbe09e8a6d1f8c8ed90cd29b049bfa6ee (patch) | |
tree | df05d1f05005546b72368291e734e51ee65eaa56 /drivers/video/omap2/dss/hdmi.c | |
parent | f0e5caab9771173a6c7a47add4b2e5174c7f11bb (diff) | |
download | op-kernel-dev-26d9dd0dbe09e8a6d1f8c8ed90cd29b049bfa6ee.zip op-kernel-dev-26d9dd0dbe09e8a6d1f8c8ed90cd29b049bfa6ee.tar.gz |
OMAP: DSS2: DISPC: rename manager related funcs
Rename dispc's manager related functions as follows:
- Remove prepending underscores, which were originally used to inform
that the clocks needs to be enabled. This meaning is no longer valid.
- Prepend the functions with dispc_mgr_*
- Remove "channel" from the name, e.g. dispc_enable_channel ->
dispc_mgr_enable
The idea is to group manager related functions so that it can be deduced
from the function name that it writes to manager spesific registers.
All dispc_mgr_* functions have enum omap_channel as the first parameter.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/hdmi.c')
-rw-r--r-- | drivers/video/omap2/dss/hdmi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/omap2/dss/hdmi.c b/drivers/video/omap2/dss/hdmi.c index 876274b..b8e02e4 100644 --- a/drivers/video/omap2/dss/hdmi.c +++ b/drivers/video/omap2/dss/hdmi.c @@ -1116,7 +1116,7 @@ static int hdmi_power_on(struct omap_dss_device *dssdev) if (r) return r; - dispc_enable_channel(OMAP_DSS_CHANNEL_DIGIT, 0); + dispc_mgr_enable(OMAP_DSS_CHANNEL_DIGIT, 0); p = &dssdev->panel.timings; @@ -1173,7 +1173,7 @@ static int hdmi_power_on(struct omap_dss_device *dssdev) dispc_set_digit_size(dssdev->panel.timings.x_res, dssdev->panel.timings.y_res); - dispc_enable_channel(OMAP_DSS_CHANNEL_DIGIT, 1); + dispc_mgr_enable(OMAP_DSS_CHANNEL_DIGIT, 1); hdmi_wp_video_start(1); @@ -1185,7 +1185,7 @@ err: static void hdmi_power_off(struct omap_dss_device *dssdev) { - dispc_enable_channel(OMAP_DSS_CHANNEL_DIGIT, 0); + dispc_mgr_enable(OMAP_DSS_CHANNEL_DIGIT, 0); hdmi_wp_video_start(0); hdmi_phy_off(); |