diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2013-08-02 14:05:20 +0200 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2013-08-02 16:17:44 -0700 |
commit | 5ef76da644bf346d29200007d8d3779e7009dabb (patch) | |
tree | e9e248f6a7f06211d03a8d89cf5466d5adcb885d /drivers/video/Kconfig | |
parent | 5ae90d8e467e625e447000cb4335c4db973b1095 (diff) | |
download | op-kernel-dev-5ef76da644bf346d29200007d8d3779e7009dabb.zip op-kernel-dev-5ef76da644bf346d29200007d8d3779e7009dabb.tar.gz |
fbdev: simplefb: add init through platform_data
If we create proper platform-devices in x86 boot-code, we can use simplefb
for VBE or EFI framebuffers, too. However, there is normally no OF support
so we introduce a platform_data object so x86 boot-code can pass the
parameters via plain old platform-data.
This also removes the OF dependency as it is not needed. The headers
provide proper dummies for the case OF is disabled.
Furthermore, we move the FORMAT-definitions to the common platform header
so initialization code can use it to transform "struct screen_info" to
the right format-name.
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Link: http://lkml.kernel.org/r/1375445127-15480-2-git-send-email-dh.herrmann@gmail.com
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 4cf1e1d..34c3d96 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -2457,7 +2457,7 @@ config FB_HYPERV config FB_SIMPLE bool "Simple framebuffer support" - depends on (FB = y) && OF + depends on (FB = y) select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT @@ -2469,8 +2469,7 @@ config FB_SIMPLE pre-allocated frame buffer surface. Configuration re: surface address, size, and format must be provided - through device tree, or potentially plain old platform data in the - future. + through device tree, or plain old platform data. source "drivers/video/omap/Kconfig" source "drivers/video/omap2/Kconfig" |