[PATCH] asiliantfb: add missing return statement

From: Vlada Peric
Date: Fri Apr 10 2009 - 05:55:39 EST


Commit 032220ba (asiliantfb: fix cmap memory leaks) changed the function
init_asiliant from void to int, resulting in the following compile warning:

drivers/video/asiliantfb.c: In function âinit_asiliantâ:
drivers/video/asiliantfb.c:536: warning: control reaches end of
non-void function

Fix the warning by returning 0.

Signed-off-by: Vlada PeriÄ <vlada.peric@xxxxxxxxx>
CC: Andres Salomon <dilinger@xxxxxxxxxx>
---
drivers/video/asiliantfb.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/video/asiliantfb.c b/drivers/video/asiliantfb.c
index 1a1f946..9fe90ce 100644
--- a/drivers/video/asiliantfb.c
+++ b/drivers/video/asiliantfb.c
@@ -533,6 +533,7 @@ static int __devinit init_asiliant(struct fb_info
*p, unsigned long addr)

writeb(0xff, mmio_base + 0x78c);
chips_hw_init(p);
+ return 0;
}

static int __devinit
--
1.6.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/