public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] FB: OMAP: Make omapfb_blank use the FB_BLANK_* defines.
@ 2006-05-30 15:05 Jonathan McDowell
  0 siblings, 0 replies; only message in thread
From: Jonathan McDowell @ 2006-05-30 15:05 UTC (permalink / raw)
  To: linux-omap-open-source

The current OMAP FB driver used the VESA_ defines for blanking, but the
rest of the FB drivers in the tree now use FB_BLANK_*. This patch
updates the OMAP FB driver to use these as well.

Signed-Off-By: Jonathan McDowell <noodles@earth.li>

-----
diff -rupN -X linux-2.6.16-e3-00/Documentation/dontdiff linux-2.6.16-e3-07/drivers/video/omap/omapfb_main.c linux-2.6.16-e3-08/drivers/video/omap/omapfb_main.c
--- linux-2.6.16-e3-07/drivers/video/omap/omapfb_main.c	2006-04-06 22:25:32.545314000 +0100
+++ linux-2.6.16-e3-08/drivers/video/omap/omapfb_main.c	2006-05-26 19:10:54.790912250 +0100
@@ -325,7 +325,7 @@ static int omapfb_blank(int blank, struc
 
 	omapfb_rqueue_lock(fbdev);
 	switch (blank) {
-	case VESA_NO_BLANKING:
+	case FB_BLANK_UNBLANK:
 		if (fbdev->state == OMAPFB_SUSPENDED) {
 			if (fbdev->ctrl->resume)
 				fbdev->ctrl->resume();
@@ -336,7 +336,10 @@ static int omapfb_blank(int blank, struc
 				do_update = 1;
 		}
 		break;
-	case VESA_POWERDOWN:
+	case FB_BLANK_NORMAL:
+	case FB_BLANK_HSYNC_SUSPEND:
+	case FB_BLANK_VSYNC_SUSPEND:
+	case FB_BLANK_POWERDOWN:
 		if (fbdev->state == OMAPFB_ACTIVE) {
 			fbdev->panel->disable();
 			if (fbdev->ctrl->suspend)
@@ -1437,7 +1440,7 @@ static int omapfb_suspend(struct platfor
 
 	DBGENTER(1);
 
-	omapfb_blank(VESA_POWERDOWN, fbdev->fb_info);
+	omapfb_blank(FB_BLANK_POWERDOWN, fbdev->fb_info);
 
 	DBGLEAVE(1);
 
@@ -1451,7 +1454,7 @@ static int omapfb_resume(struct platform
 
 	DBGENTER(1);
 
-	omapfb_blank(VESA_NO_BLANKING, fbdev->fb_info);
+	omapfb_blank(FB_BLANK_UNBLANK, fbdev->fb_info);
 
 	DBGLEAVE(1);
 	return 0;
-----

J.

-- 
 [           If I could, I would, but I can't, so I won't.            ]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-05-30 15:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-30 15:05 [PATCH] FB: OMAP: Make omapfb_blank use the FB_BLANK_* defines Jonathan McDowell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox