From bbe0bf96cc77b0ca891f1bfb765433e33364c58f Mon Sep 17 00:00:00 2001 From: Bill Pemberton Date: Mon, 19 Nov 2012 13:20:54 -0500 Subject: [PATCH] staging: pc300: remove use of __devexit_p CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer needed. Signed-off-by: Bill Pemberton Signed-off-by: Greg Kroah-Hartman --- drivers/staging/net/pc300_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/net/pc300_drv.c b/drivers/staging/net/pc300_drv.c index cb0f8d932b0c..b8e0480abad1 100644 --- a/drivers/staging/net/pc300_drv.c +++ b/drivers/staging/net/pc300_drv.c @@ -3646,7 +3646,7 @@ static struct pci_driver cpc_driver = { .name = "pc300", .id_table = cpc_pci_dev_id, .probe = cpc_init_one, - .remove = __devexit_p(cpc_remove_one), + .remove = cpc_remove_one, }; static int __init cpc_init(void) -- 2.34.1