* [PATCH 2.6.18-rc2] intelfb: cleanup constant usage
@ 2006-07-20 16:54 Dennis Munsie
0 siblings, 0 replies; only message in thread
From: Dennis Munsie @ 2006-07-20 16:54 UTC (permalink / raw)
To: linux-fbdev-devel; +Cc: ehustvedt, airlied
From: Dennis Munsie <dmunsie@cecropia.com>
Uses the correct constants for shifting in the intelfb driver. Since the
constants are the same value, this patch is only for consistency purposes.
Signed-off-by: Dennis Munsie <dmunsie@cecropia.com>
---
drivers/video/intelfb/intelfbhw.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -Naurp -X linux-2.6.18-rc2-patched/Documentation/dontdiff linux-2.6.18-rc2-patched/drivers/video/intelfb/intelfbhw.c linux-2.6.18-rc2-cleanup/drivers/video/intelfb/intelfbhw.c
--- linux-2.6.18-rc2-patched/drivers/video/intelfb/intelfbhw.c 2006-07-17 02:37:38.000000000 -0500
+++ linux-2.6.18-rc2-cleanup/drivers/video/intelfb/intelfbhw.c 2006-07-18 04:53:55.000000000 -0500
@@ -1187,12 +1187,12 @@ intelfbhw_mode_to_hw(struct intelfb_info
*ht = (htotal << HTOTAL_SHIFT) | (hactive << HACTIVE_SHIFT);
*hb = (hblank_start << HBLANKSTART_SHIFT) |
- (hblank_end << HSYNCEND_SHIFT);
+ (hblank_end << HBLANKEND_SHIFT);
*hs = (hsync_start << HSYNCSTART_SHIFT) | (hsync_end << HSYNCEND_SHIFT);
*vt = (vtotal << VTOTAL_SHIFT) | (vactive << VACTIVE_SHIFT);
*vb = (vblank_start << VBLANKSTART_SHIFT) |
- (vblank_end << VSYNCEND_SHIFT);
+ (vblank_end << VBLANKEND_SHIFT);
*vs = (vsync_start << VSYNCSTART_SHIFT) | (vsync_end << VSYNCEND_SHIFT);
*ss = (hactive << SRC_SIZE_HORIZ_SHIFT) |
(vactive << SRC_SIZE_VERT_SHIFT);
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-07-20 16:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-20 16:54 [PATCH 2.6.18-rc2] intelfb: cleanup constant usage Dennis Munsie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).