From 55e3b6df87aa2f7554d2116db7cd7ee35fdcf60c Mon Sep 17 00:00:00 2001 From: Alexander Egorenkov Date: Fri, 12 Mar 2010 11:05:53 +0100 Subject: [PATCH] Pairwise key table has 64 entries --- rt2860.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rt2860.c b/rt2860.c index 7673ce9..3711760 100644 --- a/rt2860.c +++ b/rt2860.c @@ -3628,9 +3628,9 @@ static void rt2860_asic_clear_keytables(struct rt2860_softc *sc) rt2860_io_mac_set_region_4(sc, RT2860_REG_IVEIV(0), 0, 2 * 256); - /* clear pairwise key table (entries = 256, entry size = 32) */ + /* clear pairwise key table (entries = 64, entry size = 32) */ - rt2860_io_mac_set_region_4(sc, RT2860_REG_PKEY(0), 0, 8 * 256); + rt2860_io_mac_set_region_4(sc, RT2860_REG_PKEY(0), 0, 8 * 64); /* clear shared key table (entries = 32, entry size = 32) */ -- 2.11.4.GIT