diff options
Diffstat (limited to 'drivers/net/wan/lmc/lmc_debug.c')
-rw-r--r-- | drivers/net/wan/lmc/lmc_debug.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/wan/lmc/lmc_debug.c b/drivers/net/wan/lmc/lmc_debug.c index 3b94352b0d03..15049d711f47 100644 --- a/drivers/net/wan/lmc/lmc_debug.c +++ b/drivers/net/wan/lmc/lmc_debug.c | |||
@@ -1,4 +1,3 @@ | |||
1 | |||
2 | #include <linux/types.h> | 1 | #include <linux/types.h> |
3 | #include <linux/netdevice.h> | 2 | #include <linux/netdevice.h> |
4 | #include <linux/interrupt.h> | 3 | #include <linux/interrupt.h> |
@@ -48,10 +47,10 @@ void lmcConsoleLog(char *type, unsigned char *ucData, int iLen) | |||
48 | #endif | 47 | #endif |
49 | 48 | ||
50 | #ifdef DEBUG | 49 | #ifdef DEBUG |
51 | u_int32_t lmcEventLogIndex = 0; | 50 | u32 lmcEventLogIndex; |
52 | u_int32_t lmcEventLogBuf[LMC_EVENTLOGSIZE * LMC_EVENTLOGARGS]; | 51 | u32 lmcEventLogBuf[LMC_EVENTLOGSIZE * LMC_EVENTLOGARGS]; |
53 | 52 | ||
54 | void lmcEventLog (u_int32_t EventNum, u_int32_t arg2, u_int32_t arg3) | 53 | void lmcEventLog(u32 EventNum, u32 arg2, u32 arg3) |
55 | { | 54 | { |
56 | lmcEventLogBuf[lmcEventLogIndex++] = EventNum; | 55 | lmcEventLogBuf[lmcEventLogIndex++] = EventNum; |
57 | lmcEventLogBuf[lmcEventLogIndex++] = arg2; | 56 | lmcEventLogBuf[lmcEventLogIndex++] = arg2; |