Am Montag, 19. November 2012, 13:22:07 schrieb Bill Pemberton:
> CONFIG_HOTPLUG is going away as an option so __devinit is no longer
> needed.
> 
> Signed-off-by: Bill Pemberton <[email protected]>
> Cc: Julian Andres Klode <[email protected]>
> Cc: Marc Dietrich <[email protected]>
> Cc: [email protected]
> Cc: [email protected]

Acked-by: Marc Dietrich <[email protected]>

> ---
>  drivers/staging/nvec/nvec.c       | 2 +-
>  drivers/staging/nvec/nvec_kbd.c   | 2 +-
>  drivers/staging/nvec/nvec_paz00.c | 2 +-
>  drivers/staging/nvec/nvec_power.c | 2 +-
>  drivers/staging/nvec/nvec_ps2.c   | 2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
> index ae4d4d6..56588a8 100644
> --- a/drivers/staging/nvec/nvec.c
> +++ b/drivers/staging/nvec/nvec.c
> @@ -715,7 +715,7 @@ static void nvec_power_off(void)
>       nvec_write_async(nvec_power_handle, "\x04\x01", 2);
>  }
> 
> -static int __devinit tegra_nvec_probe(struct platform_device *pdev)
> +static int tegra_nvec_probe(struct platform_device *pdev)
>  {
>       int err, ret;
>       struct clk *i2c_clk;
> diff --git a/drivers/staging/nvec/nvec_kbd.c
> b/drivers/staging/nvec/nvec_kbd.c index 7c8c603..9048d59 100644
> --- a/drivers/staging/nvec/nvec_kbd.c
> +++ b/drivers/staging/nvec/nvec_kbd.c
> @@ -100,7 +100,7 @@ static int nvec_kbd_event(struct input_dev *dev,
> unsigned int type, return 0;
>  }
> 
> -static int __devinit nvec_kbd_probe(struct platform_device *pdev)
> +static int nvec_kbd_probe(struct platform_device *pdev)
>  {
>       struct nvec_chip *nvec = dev_get_drvdata(pdev->dev.parent);
>       int i, j, err;
> diff --git a/drivers/staging/nvec/nvec_paz00.c
> b/drivers/staging/nvec/nvec_paz00.c index aab234e..4ac17fb 100644
> --- a/drivers/staging/nvec/nvec_paz00.c
> +++ b/drivers/staging/nvec/nvec_paz00.c
> @@ -43,7 +43,7 @@ static void nvec_led_brightness_set(struct led_classdev
> *led_cdev,
> 
>  }
> 
> -static int __devinit nvec_paz00_probe(struct platform_device *pdev)
> +static int nvec_paz00_probe(struct platform_device *pdev)
>  {
>       struct nvec_chip *nvec = dev_get_drvdata(pdev->dev.parent);
>       struct nvec_led *led;
> diff --git a/drivers/staging/nvec/nvec_power.c
> b/drivers/staging/nvec/nvec_power.c index 99e06f6..6c702ed 100644
> --- a/drivers/staging/nvec/nvec_power.c
> +++ b/drivers/staging/nvec/nvec_power.c
> @@ -368,7 +368,7 @@ static void nvec_power_poll(struct work_struct *work)
>       schedule_delayed_work(to_delayed_work(work), msecs_to_jiffies(5000));
>  };
> 
> -static int __devinit nvec_power_probe(struct platform_device *pdev)
> +static int nvec_power_probe(struct platform_device *pdev)
>  {
>       struct power_supply *psy;
>       struct nvec_power *power;
> diff --git a/drivers/staging/nvec/nvec_ps2.c
> b/drivers/staging/nvec/nvec_ps2.c index 6375e80..59d8f5a 100644
> --- a/drivers/staging/nvec/nvec_ps2.c
> +++ b/drivers/staging/nvec/nvec_ps2.c
> @@ -93,7 +93,7 @@ static int nvec_ps2_notifier(struct notifier_block *nb,
>       return NOTIFY_DONE;
>  }
> 
> -static int __devinit nvec_mouse_probe(struct platform_device *pdev)
> +static int nvec_mouse_probe(struct platform_device *pdev)
>  {
>       struct nvec_chip *nvec = dev_get_drvdata(pdev->dev.parent);
>       struct serio *ser_dev;
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to