lkml.org 
[lkml]   [2013]   [Jan]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] w1-gpio: fix section mismatch
    Date
    This fixes the following section mismatch:

    WARNING: drivers/w1/masters/w1-gpio.o(.data+0x188): Section mismatch in
    reference from the variable w1_gpio_driver to the function
    .init.text:w1_gpio_probe()
    The variable w1_gpio_driver references
    the function __init w1_gpio_probe()
    If the reference is valid then annotate the
    variable with __init* or __refdata (see linux/init.h) or name the variable:
    *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console

    Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
    ---

    This patch is based on 3.8-rc5.

    drivers/w1/masters/w1-gpio.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/w1/masters/w1-gpio.c b/drivers/w1/masters/w1-gpio.c
    index 85b363a..d39dfa4 100644
    --- a/drivers/w1/masters/w1-gpio.c
    +++ b/drivers/w1/masters/w1-gpio.c
    @@ -72,7 +72,7 @@ static int w1_gpio_probe_dt(struct platform_device *pdev)
    return 0;
    }

    -static int __init w1_gpio_probe(struct platform_device *pdev)
    +static int w1_gpio_probe(struct platform_device *pdev)
    {
    struct w1_bus_master *master;
    struct w1_gpio_platform_data *pdata;
    --
    1.7.10.4


    \
     
     \ /
      Last update: 2013-01-27 22:01    [W:4.455 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site