[2.6 patch] i386/crypto/aes.c: make some code static

From: Adrian Bunk
Date: Sun Feb 06 2005 - 13:58:33 EST


This patch makes some needlessly global code static.

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

---

This patch was already sent on:
- 16 Jan 2005

--- linux-2.6.11-rc1-mm1-full/arch/i386/crypto/aes.c.old 2005-01-16 04:21:08.000000000 +0100
+++ linux-2.6.11-rc1-mm1-full/arch/i386/crypto/aes.c 2005-01-16 04:22:06.000000000 +0100
@@ -93,12 +93,12 @@

u32 ft_tab[4][256];
u32 fl_tab[4][256];
-u32 ls_tab[4][256];
-u32 im_tab[4][256];
+static u32 ls_tab[4][256];
+static u32 im_tab[4][256];
u32 il_tab[4][256];
u32 it_tab[4][256];

-void gen_tabs(void)
+static void gen_tabs(void)
{
u32 i, w;
u8 pow[512], log[256];

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/