]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Staging: rtl8187se: Fix warning symbol should be static
authorAndreea-Cristina Bernat <bernat.ada@gmail.com>
Mon, 17 Mar 2014 17:58:28 +0000 (19:58 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Mar 2014 17:14:56 +0000 (10:14 -0700)
This patch solves the sparse warning: "symbol 'ieee80211_ccmp_aes_encrypt' was
not declared. Should it be static?"

Signed-off-by: Andreea-Cristina Bernat <bernat.ada@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_ccmp.c

index c8013d373a7781ca9846e94c52b437be8662bfae..4fe2538186308d8bccf2d6051a2b28e7e84150cb 100644 (file)
@@ -58,7 +58,7 @@ struct ieee80211_ccmp_data {
        u8 rx_b0[AES_BLOCK_LEN], rx_b[AES_BLOCK_LEN], rx_a[AES_BLOCK_LEN];
 };
 
-void ieee80211_ccmp_aes_encrypt(struct crypto_tfm *tfm,
+static void ieee80211_ccmp_aes_encrypt(struct crypto_tfm *tfm,
                                const u8 pt[16], u8 ct[16])
 {
        crypto_cipher_encrypt_one((void *)tfm, ct, pt);