* [PATCH 2/7] fbcon: Save var rotate field in struct display
@ 2005-03-20 13:08 Antonino A. Daplas
0 siblings, 0 replies; only message in thread
From: Antonino A. Daplas @ 2005-03-20 13:08 UTC (permalink / raw)
To: Andrew Morton; +Cc: Linux Fbdev development list
Add the rotate field among parameters saved in struct display (per console
structure). Some out-of-tree drivers are possibly using this field.
From: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Antonino Daplas <adaplas@pol.net>
---
fbcon.c | 2 ++
fbcon.h | 1 +
2 files changed, 3 insertions(+)
diff -Nru a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c
--- a/drivers/video/console/fbcon.c 2005-03-20 20:09:13 +08:00
+++ b/drivers/video/console/fbcon.c 2005-03-16 07:07:15 +08:00
@@ -703,6 +703,7 @@
disp->green = var->green;
disp->blue = var->blue;
disp->transp = var->transp;
+ disp->rotate = var->rotate;
disp->mode = fb_match_mode(var, &info->modelist);
if (disp->mode == NULL)
/* This should not happen */
@@ -726,6 +727,7 @@
var->green = disp->green;
var->blue = disp->blue;
var->transp = disp->transp;
+ var->rotate = disp->rotate;
}
static const char *fbcon_startup(void)
diff -Nru a/drivers/video/console/fbcon.h b/drivers/video/console/fbcon.h
--- a/drivers/video/console/fbcon.h 2005-03-20 20:09:13 +08:00
+++ b/drivers/video/console/fbcon.h 2005-03-16 07:07:15 +08:00
@@ -41,6 +41,7 @@
u32 grayscale;
u32 nonstd;
u32 accel_flags;
+ u32 rotate;
struct fb_bitfield red;
struct fb_bitfield green;
struct fb_bitfield blue;
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-03-20 13:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-20 13:08 [PATCH 2/7] fbcon: Save var rotate field in struct display Antonino A. Daplas
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).