diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-09-02 17:00:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-09-02 17:00:46 +0000 |
commit | 366007c3d88f6ea355f9413950ceab6f671b7049 (patch) | |
tree | de2c7d0500a62de4e054a93e4e2b858e2199e861 /target/linux/omap/patches-3.12/0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch | |
parent | 1839d1b912adbd416257521d8023807d047e496f (diff) | |
download | mtk-20170518-366007c3d88f6ea355f9413950ceab6f671b7049.zip mtk-20170518-366007c3d88f6ea355f9413950ceab6f671b7049.tar.gz mtk-20170518-366007c3d88f6ea355f9413950ceab6f671b7049.tar.bz2 |
omap: remove 3.12 kernel patches
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 42401
Diffstat (limited to 'target/linux/omap/patches-3.12/0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch')
-rw-r--r-- | target/linux/omap/patches-3.12/0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/target/linux/omap/patches-3.12/0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch b/target/linux/omap/patches-3.12/0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch deleted file mode 100644 index d22c7e0..0000000 --- a/target/linux/omap/patches-3.12/0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch +++ /dev/null @@ -1,38 +0,0 @@ -From c99bd415829ef29adf71bb1e1b577650f10e93f5 Mon Sep 17 00:00:00 2001 -From: Darren Etheridge <detheridge@ti.com> -Date: Mon, 4 Nov 2013 12:27:40 -0600 -Subject: [PATCH 752/752] video/da8xx-fb fix defect with vsync callback - invocation - -Fix defect where SGX is running at half of the expected framerate. -The original patch (@ commit ID 9a1a810516ae9cb3259b898b6879901c5b44fa90) -seems to have a mistake where it only calls the callback -for the even or the odd frames depending on the revision of the LCD controller -This patch corrects this and invokes the callback for both odd and even frame -for just the Rev02 version of the LCDC (won't find an SGX GPU on a Rev01). - -Signed-off-by: Darren Etheridge <detheridge@ti.com> ---- - drivers/video/da8xx-fb.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/drivers/video/da8xx-fb.c -+++ b/drivers/video/da8xx-fb.c -@@ -904,6 +904,8 @@ static irqreturn_t lcdc_irq_handler_rev0 - LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG); - par->vsync_flag = 1; - wake_up_interruptible(&par->vsync_wait); -+ if (vsync_cb_handler) -+ vsync_cb_handler(vsync_cb_arg); - } - - /* Set only when controller is disabled and at the end of -@@ -969,8 +971,6 @@ static irqreturn_t lcdc_irq_handler_rev0 - LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG); - par->vsync_flag = 1; - wake_up_interruptible(&par->vsync_wait); -- if (vsync_cb_handler) -- vsync_cb_handler(vsync_cb_arg); - } - } - |