staging: brcm80211: made name lookup arrays more const
The checkpatch script gave a hint that some character string arrays probably should have an additional const keyword. This patch changes the static const char * arrays to static const char * const arrays as suggested getting rid of two checkpatch warnings. Reviewed-by: Roland Vossen <rvossen@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
79560f5a7a
commit
d558dea791
|
@ -278,7 +278,7 @@ static bool in_send_q;
|
|||
#define wme_shmemacindex(ac) wme_ac2fifo[ac]
|
||||
|
||||
#ifdef BCMDBG
|
||||
static const char *fifo_names[] = {
|
||||
static const char * const fifo_names[] = {
|
||||
"AC_BK", "AC_BE", "AC_VI", "AC_VO", "BCMC", "ATIM" };
|
||||
#else
|
||||
static const char fifo_names[6][0];
|
||||
|
@ -2831,7 +2831,7 @@ static void brcms_c_wme_retries_write(struct brcms_c_info *wlc)
|
|||
}
|
||||
|
||||
#ifdef BCMDBG
|
||||
static const char *supr_reason[] = {
|
||||
static const char * const supr_reason[] = {
|
||||
"None", "PMQ Entry", "Flush request",
|
||||
"Previous frag failure", "Channel mismatch",
|
||||
"Lifetime Expiry", "Underflow"
|
||||
|
|
Loading…
Reference in New Issue