summaryrefslogtreecommitdiffstats
path: root/include/fb.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-12-18 16:22:01 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-12-20 09:35:38 +0100
commit8bec1f2f1676a3914d46868064afa94b85a7b8cb (patch)
tree9e792a97828f4afc51af6af290ca2d9173edba54 /include/fb.h
parent484cc65fdb24b1d1b054007f75dd5ac08064853d (diff)
downloadbarebox-8bec1f2f1676a3914d46868064afa94b85a7b8cb.tar.gz
barebox-8bec1f2f1676a3914d46868064afa94b85a7b8cb.tar.xz
video: Add screen_size field
barebox does not need the screen size directly, but we pass the framebuffer to Linux via simnplefb it is desirable to pass the full size of the framebuffer. Default to calculated values from the screen resolution. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/fb.h')
-rw-r--r--include/fb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fb.h b/include/fb.h
index 98d5a0382b..22fa9b130b 100644
--- a/include/fb.h
+++ b/include/fb.h
@@ -86,6 +86,7 @@ struct fb_info {
struct device_d dev; /* This is this fb device */
void *screen_base;
+ unsigned long screen_size;
void *priv;