
u.kleine-koenig at pengutronix
Nov 24, 2009, 1:07 PM
Post #1 of 1
(30 views)
Permalink
|
|
[PATCH 12/38] move mv64x60_pci_err_remove to .devexit.text
|
|
The function mv64x60_pci_err_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König <u.kleine-koenig [at] pengutronix> Acked-by: Sam Ravnborg <sam [at] ravnborg> Cc: Kay Sievers <kay.sievers [at] vrfy> Cc: Greg Kroah-Hartman <gregkh [at] suse> Cc: linux-kernel [at] vger Cc: Doug Thompson <dougthompson [at] xmission> Cc: Andrew Morton <akpm [at] linux-foundation> Cc: Julia Lawall <julia [at] diku> --- drivers/edac/mv64x60_edac.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/edac/mv64x60_edac.c b/drivers/edac/mv64x60_edac.c index a6b9fec..ed25d73 100644 --- a/drivers/edac/mv64x60_edac.c +++ b/drivers/edac/mv64x60_edac.c @@ -206,7 +206,7 @@ err: return res; } -static int mv64x60_pci_err_remove(struct platform_device *pdev) +static int __devexit mv64x60_pci_err_remove(struct platform_device *pdev) { struct edac_pci_ctl_info *pci = platform_get_drvdata(pdev); -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo [at] vger More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|