diff options
author | David Howells <dhowells@redhat.com> | 2016-04-07 17:23:23 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-11 15:34:40 -0400 |
commit | 5b3e87f19e71b7a2f789c40de04704886932b5cf (patch) | |
tree | eb929677075ea01cf42ce29fd0b9464f085aef7e /include/rxrpc | |
parent | 8e688d9c166671bb4a6977384de2fe7f46a31ba4 (diff) | |
download | linux-5b3e87f19e71b7a2f789c40de04704886932b5cf.tar.gz linux-5b3e87f19e71b7a2f789c40de04704886932b5cf.tar.bz2 linux-5b3e87f19e71b7a2f789c40de04704886932b5cf.zip |
rxrpc: Static arrays of strings should be const char *const[]
Static arrays of strings should be const char *const[].
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/rxrpc')
-rw-r--r-- | include/rxrpc/packet.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/rxrpc/packet.h b/include/rxrpc/packet.h index 9ebab3a8cf0a..b2017440b765 100644 --- a/include/rxrpc/packet.h +++ b/include/rxrpc/packet.h @@ -68,8 +68,6 @@ struct rxrpc_wire_header { } __packed; -extern const char *rxrpc_pkts[]; - #define RXRPC_SUPPORTED_PACKET_TYPES ( \ (1 << RXRPC_PACKET_TYPE_DATA) | \ (1 << RXRPC_PACKET_TYPE_ACK) | \ |