OMAPDSS: VENC: Split VENC into interface and panel driver
authorArchit Taneja <archit@ti.com>
Fri, 6 Jul 2012 15:22:37 +0000 (20:52 +0530)
committerArchit Taneja <archit@ti.com>
Wed, 15 Aug 2012 10:19:23 +0000 (15:49 +0530)
commit156fd99e92c30b0a894f7f4874c6901bfdc65c44
tree7b40d42af877119d5c23ab5a1f147298fc8d4d7d
parent9b4a5716ef54bbf2f57c75f790b12fc63a4be640
OMAPDSS: VENC: Split VENC into interface and panel driver

The current venc.c driver contains both the interface and panel driver code.
This makes the driver hard to read, and difficult to understand the work split
between the interface and panel driver and the how the locking works.

This also makes it easier to clearly define the VENC interface ops called by the
panel driver.

Split venc.c into venc.c and venc_panel.c representing the interface and panel
driver respectively. This split is done along the lines of the HDMI interface
and panel drivers.

Signed-off-by: Archit Taneja <archit@ti.com>
drivers/video/omap2/dss/Makefile
drivers/video/omap2/dss/dss.h
drivers/video/omap2/dss/venc.c
drivers/video/omap2/dss/venc_panel.c [new file with mode: 0644]