From 85dc31eb8c49d6c2427b35b7cb58f91c67357f78 Mon Sep 17 00:00:00 2001 From: John Whitmore Date: Wed, 25 Jul 2018 23:16:25 +0100 Subject: staging:rtl8192u: Rename ISR_TxBcnErr bit definition - Style Rename the bit definition ISR_TxBcnErr to ISR_TX_BCN_ERR. This change clears the checkpatch issue with CamelCase naming. The change is purely a coding style change which should not impact runtime code execution. Signed-off-by: John Whitmore Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192u/r819xU_cmdpkt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/staging/rtl8192u/r819xU_cmdpkt.h') diff --git a/drivers/staging/rtl8192u/r819xU_cmdpkt.h b/drivers/staging/rtl8192u/r819xU_cmdpkt.h index 5de6d8f4fd81..06f57016de2b 100644 --- a/drivers/staging/rtl8192u/r819xU_cmdpkt.h +++ b/drivers/staging/rtl8192u/r819xU_cmdpkt.h @@ -11,7 +11,7 @@ /* 2008/05/08 amy For USB constant. */ #define ISR_TX_BCN_OK BIT(27) /* Transmit Beacon OK */ -#define ISR_TxBcnErr BIT(26) /* Transmit Beacon Error */ +#define ISR_TX_BCN_ERR BIT(26) /* Transmit Beacon Error */ #define ISR_BcnTimerIntr BIT(13) /* Beacon Timer Interrupt */ -- cgit v1.2.3-59-g8ed1b