aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/misc.c
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2016-10-06 08:11:48 +0100
committerDavid Howells <dhowells@redhat.com>2016-10-06 08:11:48 +0100
commit19c0dbd5406ddc669ef1516c02c6b0f5a4465628 (patch)
tree0c93573b091ac7bdd9bdc916ef62282c35ff3eaf /net/rxrpc/misc.c
parentrxrpc: Accesses of rxrpc_local::service need to be RCU managed (diff)
downloadlinux-dev-19c0dbd5406ddc669ef1516c02c6b0f5a4465628.tar.xz
linux-dev-19c0dbd5406ddc669ef1516c02c6b0f5a4465628.zip
rxrpc: Fix duplicate const
Remove a duplicate const keyword. Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/misc.c')
-rw-r--r--net/rxrpc/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/misc.c b/net/rxrpc/misc.c
index 9d1c721bc4e8..804a88e28739 100644
--- a/net/rxrpc/misc.c
+++ b/net/rxrpc/misc.c
@@ -96,7 +96,7 @@ const s8 rxrpc_ack_priority[] = {
[RXRPC_ACK_PING] = 9,
};
-const char const rxrpc_ack_names[RXRPC_ACK__INVALID + 1][4] = {
+const char rxrpc_ack_names[RXRPC_ACK__INVALID + 1][4] = {
"---", "REQ", "DUP", "OOS", "WIN", "MEM", "PNG", "PNR", "DLY",
"IDL", "-?-"
};