summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@conectiva.com.br>2002-09-11 07:18:25 -0300
committerArnaldo Carvalho de Melo <acme@conectiva.com.br>2002-09-11 07:18:25 -0300
commitb0d8626b6b0146782706bdb38fa770d7829f6024 (patch)
tree4e2ce9df6ab23e84806bed8274324d68d1dc512f /include
parentc9581bb63607e96645f0066865464a80413a1248 (diff)
LLC: small cleanups, leave debug on for a while
. dprintk already puts the log level . fix some comments to match new behaviour
Diffstat (limited to 'include')
-rw-r--r--include/net/llc_c_st.h12
-rw-r--r--include/net/llc_conn.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/include/net/llc_c_st.h b/include/net/llc_c_st.h
index f0b40ed22754..0e79cfba4b3b 100644
--- a/include/net/llc_c_st.h
+++ b/include/net/llc_c_st.h
@@ -33,15 +33,15 @@
/* Connection state table structure */
struct llc_conn_state_trans {
- llc_conn_ev_t ev;
- u8 next_state;
- llc_conn_ev_qfyr_t *ev_qualifiers;
- llc_conn_action_t *ev_actions;
+ llc_conn_ev_t ev;
+ u8 next_state;
+ llc_conn_ev_qfyr_t *ev_qualifiers;
+ llc_conn_action_t *ev_actions;
};
struct llc_conn_state {
- u8 current_state;
- struct llc_conn_state_trans **transitions;
+ u8 current_state;
+ struct llc_conn_state_trans **transitions;
};
extern struct llc_conn_state llc_conn_state_table[];
diff --git a/include/net/llc_conn.h b/include/net/llc_conn.h
index db42c7f6fc78..bf70b0688938 100644
--- a/include/net/llc_conn.h
+++ b/include/net/llc_conn.h
@@ -14,7 +14,7 @@
#include <linux/timer.h>
#include <net/llc_if.h>
-#undef DEBUG_LLC_CONN_ALLOC
+#define DEBUG_LLC_CONN_ALLOC
struct llc_timer {
struct timer_list timer;