[<prev] [next>] [day] [month] [year] [list]
Message-ID: <6e4284620904100255i600e130fpcb2ac967f6f0c5d0@mail.gmail.com>
Date: Fri, 10 Apr 2009 11:55:25 +0200
From: Vlada Peric <vlada.peric@...il.com>
To: linux-kernel@...r.kernel.org
Cc: dilinger@...ian.org
Subject: [PATCH] asiliantfb: add missing return statement
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@...il.com>
CC: Andres Salomon <dilinger@...ian.org>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists