aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyush Tiwari <[email protected]>2024-03-25 02:46:15 +0530
committerGreg Kroah-Hartman <[email protected]>2024-03-25 19:08:34 +0100
commitc61be40b3b36eb0895f42c5ac717d5f7fb473878 (patch)
treea8ebb9d454fc11f324a1730b8662076ffaf91cda
parent242d724fae21fd9a5a3ea3d91093d693042509e7 (diff)
staging: rtl8712: Add space between operands and operator
Add whitespace in union recvstat between operator '>>' and operands 'RXDESC_SIZE' and '2' to conform to common kernel coding style. Signed-off-by: Ayush Tiwari <[email protected]> Link: https://lore.kernel.org/r/ZgCYHwYOmqfwMeU0@ayush-HP-Pavilion-Gaming-Laptop-15-ec0xxx Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/rtl8712/rtl8712_recv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8712/rtl8712_recv.h b/drivers/staging/rtl8712/rtl8712_recv.h
index f4d20b0efd4e..a1360dcf91ce 100644
--- a/drivers/staging/rtl8712/rtl8712_recv.h
+++ b/drivers/staging/rtl8712/rtl8712_recv.h
@@ -82,7 +82,7 @@ struct phy_stat {
union recvstat {
struct recv_stat recv_stat;
- unsigned int value[RXDESC_SIZE>>2];
+ unsigned int value[RXDESC_SIZE >> 2];
};
struct recv_buf {