From 110197272f07c686b5720118257ff13d1d4c9944 Mon Sep 17 00:00:00 2001 From: mark Date: Wed, 4 Jul 2001 15:19:02 +0000 Subject: [PATCH] Added a debug message that indicates where and in what address space the PDA was found. --- src/prism2/driver/hfa384x.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/prism2/driver/hfa384x.c b/src/prism2/driver/hfa384x.c index f7f59aa..968cdbb 100644 --- a/src/prism2/driver/hfa384x.c +++ b/src/prism2/driver/hfa384x.c @@ -515,6 +515,13 @@ int hfa384x_drvr_readpda(hfa384x_t *hw, void *buf, UINT len) } } if ( pdaok ) { + WLAN_LOG_DEBUG2(2,"PDA Read from 0x%8lx in %s space.\n", + pdaloc[i].cardaddr, + pdaloc[i].auxctl == 0 ? "EXTDS" : + pdaloc[i].auxctl == 1 ? "NV" : + pdaloc[i].auxctl == 2 ? "PHY" : + pdaloc[i].auxctl == 3 ? "ICSRAM" : + ""); break; } }