lkml.org 
[lkml]   [2005]   [Nov]   [7]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    FromPierre Ossman <>
    Subject[PATCH] [MMC] Use __devexit_p in wbsd
    DateMon, 07 Nov 2005 08:04:59 +0100
    wbsd_*_remove() is declared as __devexit but __devexit_p isn't used
    when taking their addresses.
    
    Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
    ---
     drivers/mmc/wbsd.c |    4 ++--
     1 files changed, 2 insertions(+), 2 deletions(-)
    diff --git a/drivers/mmc/wbsd.c b/drivers/mmc/wbsd.c
    --- a/drivers/mmc/wbsd.c
    +++ b/drivers/mmc/wbsd.c
    @@ -2110,7 +2110,7 @@ static struct device_driver wbsd_driver 
     	.name		= DRIVER_NAME,
     	.bus		= &platform_bus_type,
     	.probe		= wbsd_probe,
    -	.remove		= wbsd_remove,
    +	.remove		= __devexit_p(wbsd_remove),
     
     	.suspend	= wbsd_platform_suspend,
     	.resume		= wbsd_platform_resume,
    @@ -2122,7 +2122,7 @@ static struct pnp_driver wbsd_pnp_driver
     	.name		= DRIVER_NAME,
     	.id_table	= pnp_dev_table,
     	.probe		= wbsd_pnp_probe,
    -	.remove		= wbsd_pnp_remove,
    +	.remove		= __devexit_p(wbsd_pnp_remove),
     
     	.suspend	= wbsd_pnp_suspend,
     	.resume		= wbsd_pnp_resume,
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at  http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at  http://www.tux.org/lkml/
    
    
    \
     
     \ /
      Last update: 2005-11-07 08:07    [from the cache]
    ©2003-2008