diff options
author | David Howells <dhowells@redhat.com> | 2016-10-06 08:11:48 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-10-06 08:11:48 +0100 |
commit | 19c0dbd5406ddc669ef1516c02c6b0f5a4465628 (patch) | |
tree | 0c93573b091ac7bdd9bdc916ef62282c35ff3eaf /net/rxrpc/ar-internal.h | |
parent | b63452c11e22382e592d3f7f9ac4966197d3eab6 (diff) | |
download | op-kernel-dev-19c0dbd5406ddc669ef1516c02c6b0f5a4465628.zip op-kernel-dev-19c0dbd5406ddc669ef1516c02c6b0f5a4465628.tar.gz |
rxrpc: Fix duplicate const
Remove a duplicate const keyword.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/ar-internal.h')
-rw-r--r-- | net/rxrpc/ar-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-internal.h b/net/rxrpc/ar-internal.h index d38dffd..4954e6e2 100644 --- a/net/rxrpc/ar-internal.h +++ b/net/rxrpc/ar-internal.h @@ -777,7 +777,7 @@ extern const char rxrpc_congest_modes[NR__RXRPC_CONGEST_MODES][10]; extern const char rxrpc_congest_changes[rxrpc_congest__nr_change][9]; extern const char *const rxrpc_pkts[]; -extern const char const rxrpc_ack_names[RXRPC_ACK__INVALID + 1][4]; +extern const char rxrpc_ack_names[RXRPC_ACK__INVALID + 1][4]; #include <trace/events/rxrpc.h> |