2008-01-30 20:12:43

by Adrian Bunk

[permalink] [raw]
Subject: [2.6 patch] block/sunvdc.c:print_version() must be __devinit

This patch fixes the following section mismatches:

<-- snip -->

...
WARNING: drivers/block/sunvdc.o(.text+0xf0): Section mismatch in reference from the function print_version() to the variable .devinit.data:version
WARNING: drivers/block/sunvdc.o(.text+0xf8): Section mismatch in reference from the function print_version() to the variable .devinit.data:version
...

<-- snip -->

Signed-off-by: Adrian Bunk <[email protected]>

---
302ffded3690214f130c66a7343ad23a1fb7dbbc
diff --git a/drivers/block/sunvdc.c b/drivers/block/sunvdc.c
index 66e3015..a8de037 100644
--- a/drivers/block/sunvdc.c
+++ b/drivers/block/sunvdc.c
@@ -732,7 +732,7 @@ static struct vio_driver_ops vdc_vio_ops = {
.handshake_complete = vdc_handshake_complete,
};

-static void print_version(void)
+static void __devinit print_version(void)
{
static int version_printed;


2008-01-30 20:20:45

by Jens Axboe

[permalink] [raw]
Subject: Re: [2.6 patch] block/sunvdc.c:print_version() must be __devinit

On Wed, Jan 30 2008, Adrian Bunk wrote:
> This patch fixes the following section mismatches:
>
> <-- snip -->
>
> ...
> WARNING: drivers/block/sunvdc.o(.text+0xf0): Section mismatch in reference from the function print_version() to the variable .devinit.data:version
> WARNING: drivers/block/sunvdc.o(.text+0xf8): Section mismatch in reference from the function print_version() to the variable .devinit.data:version
> ...
>
> <-- snip -->

applied

--
Jens Axboe