Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 65f60925 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by David S. Miller
Browse files

drivers/net: add missing __devexit_p() annotations



Drivers that refer to a __devexit function in an operations
structure need to annotate that pointer with __devexit_p so
replace it with a NULL pointer when the section gets discarded.

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarMathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 32a6d90b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1262,7 +1262,7 @@ static struct platform_driver ks8842_platform_driver = {
		.owner	= THIS_MODULE,
		.owner	= THIS_MODULE,
	},
	},
	.probe		= ks8842_probe,
	.probe		= ks8842_probe,
	.remove		= ks8842_remove,
	.remove		= __devexit_p(ks8842_remove),
};
};


module_platform_driver(ks8842_platform_driver);
module_platform_driver(ks8842_platform_driver);
+1 −1
Original line number Original line Diff line number Diff line
@@ -193,7 +193,7 @@ static struct sdio_driver b43_sdio_driver = {
	.name		= "b43-sdio",
	.name		= "b43-sdio",
	.id_table	= b43_sdio_ids,
	.id_table	= b43_sdio_ids,
	.probe		= b43_sdio_probe,
	.probe		= b43_sdio_probe,
	.remove		= b43_sdio_remove,
	.remove		= __devexit_p(b43_sdio_remove),
};
};


int b43_sdio_init(void)
int b43_sdio_init(void)
+1 −1
Original line number Original line Diff line number Diff line
@@ -1131,7 +1131,7 @@ static struct usb_driver p54u_driver = {
	.name	= "p54usb",
	.name	= "p54usb",
	.id_table = p54u_table,
	.id_table = p54u_table,
	.probe = p54u_probe,
	.probe = p54u_probe,
	.disconnect = p54u_disconnect,
	.disconnect = __devexit_p(p54u_disconnect),
	.pre_reset = p54u_pre_reset,
	.pre_reset = p54u_pre_reset,
	.post_reset = p54u_post_reset,
	.post_reset = p54u_post_reset,
#ifdef CONFIG_PM
#ifdef CONFIG_PM