mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
libertas: remove __dev* attributes
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@virginia.edu> Cc: Dan Williams <dcbw@redhat.com> Cc: libertas-dev@lists.infradead.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d00064d4f7
commit
fbdb7fcefe
@ -1124,7 +1124,7 @@ static void if_spi_resume_worker(struct work_struct *work)
|
||||
}
|
||||
}
|
||||
|
||||
static int __devinit if_spi_probe(struct spi_device *spi)
|
||||
static int if_spi_probe(struct spi_device *spi)
|
||||
{
|
||||
struct if_spi_card *card;
|
||||
struct lbs_private *priv = NULL;
|
||||
@ -1226,7 +1226,7 @@ out:
|
||||
return err;
|
||||
}
|
||||
|
||||
static int __devexit libertas_spi_remove(struct spi_device *spi)
|
||||
static int libertas_spi_remove(struct spi_device *spi)
|
||||
{
|
||||
struct if_spi_card *card = spi_get_drvdata(spi);
|
||||
struct lbs_private *priv = card->priv;
|
||||
@ -1285,7 +1285,7 @@ static const struct dev_pm_ops if_spi_pm_ops = {
|
||||
|
||||
static struct spi_driver libertas_spi_driver = {
|
||||
.probe = if_spi_probe,
|
||||
.remove = __devexit_p(libertas_spi_remove),
|
||||
.remove = libertas_spi_remove,
|
||||
.driver = {
|
||||
.name = "libertas_spi",
|
||||
.owner = THIS_MODULE,
|
||||
|
Loading…
Reference in New Issue
Block a user