> CONFIG_HOTPLUG is going away as an option. As result the __dev* > markings will be going away. > > Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst, > and __devexit. > > Signed-off-by: Bill Pemberton <wfp5p@xxxxxxxxxxxx> > Cc: Guan Xuetao <gxt@xxxxxxxxxxxxxxx> Acked-by: Guan Xuetao <gxt@xxxxxxxxxxxxxxx> > --- > drivers/i2c/busses/i2c-puv3.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-puv3.c b/drivers/i2c/busses/i2c-puv3.c > index d8515be..d7c512d 100644 > --- a/drivers/i2c/busses/i2c-puv3.c > +++ b/drivers/i2c/busses/i2c-puv3.c > @@ -184,7 +184,7 @@ static struct i2c_algorithm puv3_i2c_algorithm = { > /* > * Main initialization routine. > */ > -static int __devinit puv3_i2c_probe(struct platform_device *pdev) > +static int puv3_i2c_probe(struct platform_device *pdev) > { > struct i2c_adapter *adapter; > struct resource *mem; > @@ -231,7 +231,7 @@ fail_nomem: > return rc; > } > > -static int __devexit puv3_i2c_remove(struct platform_device *pdev) > +static int puv3_i2c_remove(struct platform_device *pdev) > { > struct i2c_adapter *adapter = platform_get_drvdata(pdev); > struct resource *mem; > @@ -276,7 +276,7 @@ static SIMPLE_DEV_PM_OPS(puv3_i2c_pm, > puv3_i2c_suspend, NULL); > > static struct platform_driver puv3_i2c_driver = { > .probe = puv3_i2c_probe, > - .remove = __devexit_p(puv3_i2c_remove), > + .remove = puv3_i2c_remove, > .driver = { > .name = "PKUnity-v3-I2C", > .owner = THIS_MODULE, > -- > 1.8.0.1 > -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html