From d96bde71d87651bd1ad243b50e5c9e6857d611e5 Mon Sep 17 00:00:00 2001 From: Mateusz Kulikowski Date: Sun, 20 Sep 2015 10:12:57 +0200 Subject: [PATCH] staging: rtl8192e: Rename rtl8192_pci_module_exit Use naming schema found in other rtlwifi devices. Rename rtl8192_pci_module_exit to _rtl92e_pci_module_exit. Signed-off-by: Mateusz Kulikowski Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192e/rtl8192e/rtl_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index ae0d00fa39c8..f5dbb494afd2 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -2800,7 +2800,7 @@ static int __init rtl8192_pci_module_init(void) return 0; } -static void __exit rtl8192_pci_module_exit(void) +static void __exit _rtl92e_pci_module_exit(void) { pci_unregister_driver(&rtl8192_pci_driver); @@ -2823,7 +2823,7 @@ void rtl92e_check_rfctrl_gpio_timer(unsigned long data) ------------------- module init / exit stubs ---------------- ****************************************************************************/ module_init(rtl8192_pci_module_init); -module_exit(rtl8192_pci_module_exit); +module_exit(_rtl92e_pci_module_exit); MODULE_DESCRIPTION("Linux driver for Realtek RTL819x WiFi cards"); MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR); -- 2.34.1