Commit dc5de47c authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Remove dead code associated with BUILT_IN_CRYPTO

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent 954b609b
...@@ -23,16 +23,6 @@ ...@@ -23,16 +23,6 @@
#include <linux/sched.h> #include <linux/sched.h>
#include <asm/kmap_types.h> #include <asm/kmap_types.h>
#ifdef BUILT_IN_CRYPTO
#ifdef CONFIG_CRYPTO_HMAC
#undef CONFIG_CRYPTO_HMAC
#endif
#ifdef CONFIG_KMOD
#undef CONFIG_KMOD
#endif
#endif /* BUILT_IN_CRYPTO */
extern enum km_type crypto_km_types[]; extern enum km_type crypto_km_types[];
static inline enum km_type crypto_kmap_type(int out) static inline enum km_type crypto_kmap_type(int out)
......
...@@ -3255,26 +3255,6 @@ static int __init rtl8192_pci_module_init(void) ...@@ -3255,26 +3255,6 @@ static int __init rtl8192_pci_module_init(void)
int ret; int ret;
int error; int error;
#ifdef BUILT_IN_CRYPTO
ret = arc4_init();
if (ret) {
printk(KERN_ERR "arc4_init() failed %d\n", ret);
return ret;
}
ret = michael_mic_init();
if (ret) {
printk(KERN_ERR "michael_mic_init() failed %d\n", ret);
return ret;
}
ret = aes_init();
if (ret) {
printk(KERN_ERR "aes_init() failed %d\n", ret);
return ret;
}
#endif
ret = rtllib_init(); ret = rtllib_init();
if (ret) { if (ret) {
printk(KERN_ERR "rtllib_init() failed %d\n", ret); printk(KERN_ERR "rtllib_init() failed %d\n", ret);
...@@ -3333,12 +3313,6 @@ static void __exit rtl8192_pci_module_exit(void) ...@@ -3333,12 +3313,6 @@ static void __exit rtl8192_pci_module_exit(void)
rtllib_crypto_wep_exit(); rtllib_crypto_wep_exit();
rtllib_crypto_deinit(); rtllib_crypto_deinit();
rtllib_exit(); rtllib_exit();
#ifdef BUILT_IN_CRYPTO
arc4_exit();
michael_mic_exit();
aes_fini();
#endif
} }
void check_rfctrl_gpio_timer(unsigned long data) void check_rfctrl_gpio_timer(unsigned long data)
......
...@@ -24,16 +24,6 @@ ...@@ -24,16 +24,6 @@
#include <asm/page.h> #include <asm/page.h>
#include <asm/errno.h> #include <asm/errno.h>
#ifdef BUILT_IN_CRYPTO
#ifdef CONFIG_CRYPTO_HMAC
#undef CONFIG_CRYPTO_HMAC
#endif
#ifdef CONFIG_KMOD
#undef CONFIG_KMOD
#endif
#endif /* BUILT_IN_CRYPTO */
#define crypto_register_alg crypto_register_alg_rsl #define crypto_register_alg crypto_register_alg_rsl
#define crypto_unregister_alg crypto_unregister_alg_rsl #define crypto_unregister_alg crypto_unregister_alg_rsl
#define crypto_alloc_tfm crypto_alloc_tfm_rsl #define crypto_alloc_tfm crypto_alloc_tfm_rsl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment