]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
video: ARM CLCD: Fix DT-related build problems
authorPawel Moll <pawel.moll@arm.com>
Fri, 1 Aug 2014 14:43:34 +0000 (15:43 +0100)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Mon, 4 Aug 2014 06:31:35 +0000 (09:31 +0300)
This patch fixes the following error when !CONFIG_OF:

drivers/video/fbdev/amba-clcd.c:800:54: warning: ‘struct amba_dev’ declared inside parameter list [enabled by default]
 static struct clcd_board *clcdfb_of_get_board(struct amba_dev *dev)
                                                      ^
and adds a missing Kconfig select causing this
when CONFIG_OF && !CONFIG_FB_MODE_HELPERS:

drivers/video/fbdev/amba-clcd.c:567: undefined reference to `fb_videomode_from_videomode'

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/fbdev/Kconfig
drivers/video/fbdev/amba-clcd.c

index 6f451ad34afcf7561b92fab8e535e20a79eb24a8..ef946236f09ed7f211820b2ad3fd25f87e3b87b6 100644 (file)
@@ -280,6 +280,7 @@ config FB_ARMCLCD
        select FB_CFB_FILLRECT
        select FB_CFB_COPYAREA
        select FB_CFB_IMAGEBLIT
+       select FB_MODE_HELPERS if OF
        select VIDEOMODE_HELPERS if OF
        help
          This framebuffer device driver is for the ARM PrimeCell PL110
index 23b35194dee306e882af38276ebefcb9683906d5..beadd3edaa176625aaeb47440a44b830e5c78fd4 100644 (file)
@@ -797,7 +797,7 @@ static struct clcd_board *clcdfb_of_get_board(struct amba_device *dev)
        return board;
 }
 #else
-static struct clcd_board *clcdfb_of_get_board(struct amba_dev *dev)
+static struct clcd_board *clcdfb_of_get_board(struct amba_device *dev)
 {
        return NULL;
 }