Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: crystalhd: remove use of __devexit

CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Bill Pemberton and committed by
Greg Kroah-Hartman
fdfa2339 8db72ff5

+4 -4
+1 -1
drivers/staging/crystalhd/crystalhd_cmds.c
··· 986 986 * 987 987 * Called at the time of driver un-load. 988 988 */ 989 - enum BC_STATUS __devexit crystalhd_delete_cmd_context(struct crystalhd_cmd *ctx) 989 + enum BC_STATUS crystalhd_delete_cmd_context(struct crystalhd_cmd *ctx) 990 990 { 991 991 BCMLOG(BCMLOG_DBG, "Deleting Command context..\n"); 992 992
+3 -3
drivers/staging/crystalhd/crystalhd_lnx.c
··· 418 418 return rc; 419 419 } 420 420 421 - static void __devexit chd_dec_release_chdev(struct crystalhd_adp *adp) 421 + static void chd_dec_release_chdev(struct crystalhd_adp *adp) 422 422 { 423 423 struct crystalhd_ioctl_data *temp = NULL; 424 424 if (!adp) ··· 496 496 return 0; 497 497 } 498 498 499 - static void __devexit chd_pci_release_mem(struct crystalhd_adp *pinfo) 499 + static void chd_pci_release_mem(struct crystalhd_adp *pinfo) 500 500 { 501 501 if (!pinfo) 502 502 return; ··· 511 511 } 512 512 513 513 514 - static void __devexit chd_dec_pci_remove(struct pci_dev *pdev) 514 + static void chd_dec_pci_remove(struct pci_dev *pdev) 515 515 { 516 516 struct crystalhd_adp *pinfo; 517 517 enum BC_STATUS sts = BC_STS_SUCCESS;