From c94ac88df35ba210039fc6433627f5bc2b5fd767 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Fri, 4 Nov 2011 09:48:54 +0200 Subject: [PATCH] --- yaml --- r: 284915 b: refs/heads/master c: 58f2554807a7dc627f1583d1d4363b85758cf685 h: refs/heads/master i: 284913: 70b8342d391f592687fb9b4836cd66f1ea9da9ba 284911: 03df3c190e9547a05428446e477f8e4f4743c397 v: v3 --- [refs] | 2 +- trunk/drivers/video/omap2/dss/Makefile | 3 +- trunk/drivers/video/omap2/dss/apply.c | 656 ++++++++++++++++++++++++ trunk/drivers/video/omap2/dss/core.c | 2 + trunk/drivers/video/omap2/dss/dss.h | 9 +- trunk/drivers/video/omap2/dss/manager.c | 621 ---------------------- 6 files changed, 668 insertions(+), 625 deletions(-) create mode 100644 trunk/drivers/video/omap2/dss/apply.c diff --git a/[refs] b/[refs] index 310d78e8c619..5a0e3f5a8437 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d2bbb9bbd1503e8b5235fe316e7ee0c7f41daf7e +refs/heads/master: 58f2554807a7dc627f1583d1d4363b85758cf685 diff --git a/trunk/drivers/video/omap2/dss/Makefile b/trunk/drivers/video/omap2/dss/Makefile index bd34ac5b2026..8594522184d9 100644 --- a/trunk/drivers/video/omap2/dss/Makefile +++ b/trunk/drivers/video/omap2/dss/Makefile @@ -1,5 +1,6 @@ obj-$(CONFIG_OMAP2_DSS) += omapdss.o -omapdss-y := core.o dss.o dss_features.o dispc.o display.o manager.o overlay.o +omapdss-y := core.o dss.o dss_features.o dispc.o display.o manager.o overlay.o \ + apply.o omapdss-$(CONFIG_OMAP2_DSS_DPI) += dpi.o omapdss-$(CONFIG_OMAP2_DSS_RFBI) += rfbi.o omapdss-$(CONFIG_OMAP2_DSS_VENC) += venc.o diff --git a/trunk/drivers/video/omap2/dss/apply.c b/trunk/drivers/video/omap2/dss/apply.c new file mode 100644 index 000000000000..c634c986293d --- /dev/null +++ b/trunk/drivers/video/omap2/dss/apply.c @@ -0,0 +1,656 @@ +/* + * Copyright (C) 2011 Texas Instruments + * Author: Tomi Valkeinen + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published by + * the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . + */ + +#define DSS_SUBSYS_NAME "APPLY" + +#include +#include +#include +#include + +#include