diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-04-21 17:03:10 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-04-21 17:03:10 +0000 |
commit | 31465d24224cc605bac8416333c66ddfd9fa92ac (patch) | |
tree | b113f6ec6a28985a64f429d330166e1a56111a54 /target/linux/xburst/patches-2.6.36/420-fb-notifier-pre-post.patch | |
parent | 1fd9583294e1667becb3d038c29f4902ab620dd8 (diff) | |
download | upstream-31465d24224cc605bac8416333c66ddfd9fa92ac.tar.gz upstream-31465d24224cc605bac8416333c66ddfd9fa92ac.tar.bz2 upstream-31465d24224cc605bac8416333c66ddfd9fa92ac.zip |
xburst: remove 2.6.36 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31422 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/xburst/patches-2.6.36/420-fb-notifier-pre-post.patch')
-rw-r--r-- | target/linux/xburst/patches-2.6.36/420-fb-notifier-pre-post.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/target/linux/xburst/patches-2.6.36/420-fb-notifier-pre-post.patch b/target/linux/xburst/patches-2.6.36/420-fb-notifier-pre-post.patch deleted file mode 100644 index 7afa5df6cf..0000000000 --- a/target/linux/xburst/patches-2.6.36/420-fb-notifier-pre-post.patch +++ /dev/null @@ -1,37 +0,0 @@ -From b2334010a5d1d188e5123c30455a4356d66da645 Mon Sep 17 00:00:00 2001 -From: Lars-Peter Clausen <lars@metafoo.de> -Date: Sat, 24 Apr 2010 12:23:28 +0200 -Subject: [PATCH] Framebuffer notifier: Call notifier callbacks prior to blanking the screen - ---- - drivers/video/fbmem.c | 8 ++++++-- - 1 files changed, 6 insertions(+), 2 deletions(-) - ---- a/drivers/video/fbmem.c -+++ b/drivers/video/fbmem.c -@@ -1008,12 +1008,12 @@ fb_set_var(struct fb_info *info, struct - int - fb_blank(struct fb_info *info, int blank) - { -- int ret = -EINVAL; -+ int ret = 0; - - if (blank > FB_BLANK_POWERDOWN) - blank = FB_BLANK_POWERDOWN; - -- if (info->fbops->fb_blank) -+ if (info->fbops->fb_blank && blank == FB_BLANK_UNBLANK) - ret = info->fbops->fb_blank(blank, info); - - if (!ret) { -@@ -1024,6 +1024,10 @@ fb_blank(struct fb_info *info, int blank - fb_notifier_call_chain(FB_EVENT_BLANK, &event); - } - -+ if (info->fbops->fb_blank && blank != FB_BLANK_UNBLANK) -+ ret = info->fbops->fb_blank(blank, info); -+ -+ - return ret; - } - |