summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/sysfb.c
diff options
context:
space:
mode:
authorDavid Herrmann2013-08-02 14:05:23 +0200
committerH. Peter Anvin2013-08-03 01:17:47 +0200
commit2995e506276bfdc7311eb02db8b2aa1a61a4b849 (patch)
treec84c86746352c3875bb418a7bb91e433c2aa4471 /arch/x86/kernel/sysfb.c
parentx86: provide platform-devices for boot-framebuffers (diff)
downloadkernel-qcow2-linux-2995e506276bfdc7311eb02db8b2aa1a61a4b849.tar.gz
kernel-qcow2-linux-2995e506276bfdc7311eb02db8b2aa1a61a4b849.tar.xz
kernel-qcow2-linux-2995e506276bfdc7311eb02db8b2aa1a61a4b849.zip
x86: sysfb: move EFI quirks from efifb to sysfb
The EFI FB quirks from efifb.c are useful for simple-framebuffer devices as well. Apply them by default so we can convert efifb.c to use efi-framebuffer platform devices. Signed-off-by: David Herrmann <dh.herrmann@gmail.com> Link: http://lkml.kernel.org/r/1375445127-15480-5-git-send-email-dh.herrmann@gmail.com Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/kernel/sysfb.c')
-rw-r--r--arch/x86/kernel/sysfb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/sysfb.c b/arch/x86/kernel/sysfb.c
index 7f30e194eb52..193ec2ce46c7 100644
--- a/arch/x86/kernel/sysfb.c
+++ b/arch/x86/kernel/sysfb.c
@@ -47,6 +47,8 @@ static __init int sysfb_init(void)
bool compatible;
int ret;
+ sysfb_apply_efi_quirks();
+
/* try to create a simple-framebuffer device */
compatible = parse_mode(si, &mode);
if (compatible) {
@@ -68,4 +70,5 @@ static __init int sysfb_init(void)
return IS_ERR(pd) ? PTR_ERR(pd) : 0;
}
+/* must execute after PCI subsystem for EFI quirks */
device_initcall(sysfb_init);