diff options
| author | Ayush Tiwari <ayushtiw0110@gmail.com> | 2024-03-25 02:46:15 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-03-25 19:08:34 +0100 |
| commit | c61be40b3b36eb0895f42c5ac717d5f7fb473878 (patch) | |
| tree | a8ebb9d454fc11f324a1730b8662076ffaf91cda /drivers/staging/rtl8712 | |
| parent | 242d724fae21fd9a5a3ea3d91093d693042509e7 (diff) | |
| download | linux-next-c61be40b3b36eb0895f42c5ac717d5f7fb473878.tar.gz linux-next-c61be40b3b36eb0895f42c5ac717d5f7fb473878.zip | |
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 <ayushtiw0110@gmail.com>
Link: https://lore.kernel.org/r/ZgCYHwYOmqfwMeU0@ayush-HP-Pavilion-Gaming-Laptop-15-ec0xxx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8712')
| -rw-r--r-- | drivers/staging/rtl8712/rtl8712_recv.h | 2 |
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 { |
