Commit b9459226 authored by Thomas Zimmermann's avatar Thomas Zimmermann Committed by Ard Biesheuvel
Browse files

sysfb: Add struct sysfb_display_info



Add struct sysfb_display_info to wrap display-related state. For now
it contains only the screen's video mode. Later EDID will be added as
well.

This struct will be helpful for passing display state to sysfb drivers
or from the EFI stub library.

Signed-off-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarArd Biesheuvel <ardb@kernel.org>
Reviewed-by: default avatarRichard Lyu <richard.lyu@suse.com>
Signed-off-by: default avatarArd Biesheuvel <ardb@kernel.org>
parent 54bdafd7
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@
 */

#include <linux/err.h>
#include <linux/screen_info.h>
#include <linux/types.h>

#include <linux/platform_data/simplefb.h>
@@ -60,6 +61,10 @@ struct efifb_dmi_info {
	int flags;
};

struct sysfb_display_info {
	struct screen_info screen;
};

#ifdef CONFIG_SYSFB

void sysfb_disable(struct device *dev);