aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorPranith Kumar <bobby.prani@gmail.com>2014-08-21 08:23:57 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2014-08-26 12:48:34 +0300
commit754d561ab694ff240ad1615abd0d99f3c1db79a2 (patch)
tree0967e6d56b3824711baef27d3ba3b358d88c161e /drivers/video
parentLinux 3.17-rc2 (diff)
downloadlinux-dev-754d561ab694ff240ad1615abd0d99f3c1db79a2.tar.xz
linux-dev-754d561ab694ff240ad1615abd0d99f3c1db79a2.zip
fbdev: Remove __init from chips_hw_init() to fix build failure
Fix build failure caused as follows: The function chipsfb_pci_init() references the function __init chips_hw_init(). This is often because chipsfb_pci_init lacks a __init annotation or the annotation of chips_hw_init is wrong. make: *** [drivers] Error 2 by removing the __init annotation from chips_hw_init(). The other thing that could have been done was annotating chipsfb_pci_init(). But that cannot be done since chipsfb_pci_init() is called from non __init functions. Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/fbdev/chipsfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/chipsfb.c b/drivers/video/fbdev/chipsfb.c
index 206a66b61072..59abdc6a97f6 100644
--- a/drivers/video/fbdev/chipsfb.c
+++ b/drivers/video/fbdev/chipsfb.c
@@ -273,7 +273,7 @@ static struct chips_init_reg chips_init_xr[] = {
{ 0xa8, 0x00 }
};
-static void __init chips_hw_init(void)
+static void chips_hw_init(void)
{
int i;