diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-30 21:55:45 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-31 22:27:18 -0500 |
commit | 036c2e27bc3a6498afb35de017d810194032d765 (patch) | |
tree | fc93e7b01fc0b44e7fc3ab46aadfb88476b5ac2d /net/rxrpc/ar-call.c | |
parent | 18c0226e3c0a75b0f1d6828c118bcedf59d7ee99 (diff) |
[AF_RXRPC]: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/ar-call.c')
-rw-r--r-- | net/rxrpc/ar-call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-call.c b/net/rxrpc/ar-call.c index 3c04b00dab74..d9231245a79a 100644 --- a/net/rxrpc/ar-call.c +++ b/net/rxrpc/ar-call.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <net/af_rxrpc.h> | 15 | #include <net/af_rxrpc.h> |
16 | #include "ar-internal.h" | 16 | #include "ar-internal.h" |
17 | 17 | ||
18 | const char *rxrpc_call_states[] = { | 18 | const char *const rxrpc_call_states[] = { |
19 | [RXRPC_CALL_CLIENT_SEND_REQUEST] = "ClSndReq", | 19 | [RXRPC_CALL_CLIENT_SEND_REQUEST] = "ClSndReq", |
20 | [RXRPC_CALL_CLIENT_AWAIT_REPLY] = "ClAwtRpl", | 20 | [RXRPC_CALL_CLIENT_AWAIT_REPLY] = "ClAwtRpl", |
21 | [RXRPC_CALL_CLIENT_RECV_REPLY] = "ClRcvRpl", | 21 | [RXRPC_CALL_CLIENT_RECV_REPLY] = "ClRcvRpl", |