staging: wlags49_h2: remove use of __devexit_p

CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed, remove it.

This also changes the syntax for the initialization of the wl_driver
struct to match convention.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bill Pemberton 2012-11-19 13:19:34 -05:00 committed by Greg Kroah-Hartman
parent bfdc409770
commit 1a65e20496

View File

@ -160,14 +160,13 @@ void wl_pci_dma_hcf_reclaim_rx( struct wl_private *lp );
/******************************************************************************* /*******************************************************************************
* PCI module function registration * PCI module function registration
******************************************************************************/ ******************************************************************************/
static struct pci_driver wl_driver = static struct pci_driver wl_driver = {
{ .name = MODULE_NAME,
name: MODULE_NAME, .id_table = wl_pci_tbl,
id_table: wl_pci_tbl, .probe = wl_pci_probe,
probe: wl_pci_probe, .remove = wl_pci_remove,
remove: __devexit_p(wl_pci_remove), .suspend = NULL,
suspend: NULL, .resume = NULL
resume: NULL,
}; };
/******************************************************************************* /*******************************************************************************