diff options
| author | Vlada Peric <vlada.peric@gmail.com> | 2009-04-21 15:23:59 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-21 16:41:47 -0400 |
| commit | 44aa417910ec9cda6da42be914105e789273b507 (patch) | |
| tree | be2ea32bb8d74b309b7602b7315c7234cd7e7344 | |
| parent | b33ecba033ca649f6350696a3057d916a23a775a (diff) | |
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 Peric <vlada.peric@gmail.com>
Cc: Andres Salomon <dilinger@debian.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | 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 1a1f946d8fef..9fe90ce928fb 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) | |||
| 533 | 533 | ||
| 534 | writeb(0xff, mmio_base + 0x78c); | 534 | writeb(0xff, mmio_base + 0x78c); |
| 535 | chips_hw_init(p); | 535 | chips_hw_init(p); |
| 536 | return 0; | ||
| 536 | } | 537 | } |
| 537 | 538 | ||
| 538 | static int __devinit | 539 | static int __devinit |
