diff options
author | Joe Perches <joe@perches.com> | 2014-12-10 12:43:57 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-12-10 15:21:24 -0500 |
commit | 9b373069350d747c4e7ad7ea59f0fa348e860383 (patch) | |
tree | 0dab53d75e131669137800f492bd6c3a831ab763 /include/net | |
parent | 14b7d95fd2288524c71aac48f3f7309fa6afa853 (diff) |
llc: Make llc_conn_ev_qfyr_t function pointer arrays const
It's better when function pointer arrays aren't modifiable.
Net change from original:
$ size net/llc/built-in.o.*
text data bss dec hex filename
61065 12886 1344 75295 1261f net/llc/built-in.o.new
47113 27030 1344 75487 126df net/llc/built-in.o.old
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/llc_c_st.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/llc_c_st.h b/include/net/llc_c_st.h index 60e2ebb1d9b1..48f3f891b2f9 100644 --- a/include/net/llc_c_st.h +++ b/include/net/llc_c_st.h | |||
@@ -35,7 +35,7 @@ | |||
35 | struct llc_conn_state_trans { | 35 | struct llc_conn_state_trans { |
36 | llc_conn_ev_t ev; | 36 | llc_conn_ev_t ev; |
37 | u8 next_state; | 37 | u8 next_state; |
38 | llc_conn_ev_qfyr_t *ev_qualifiers; | 38 | const llc_conn_ev_qfyr_t *ev_qualifiers; |
39 | const llc_conn_action_t *ev_actions; | 39 | const llc_conn_action_t *ev_actions; |
40 | }; | 40 | }; |
41 | 41 | ||