diff options
author | Quytelda Kahja <quytelda@tamalin.org> | 2018-05-22 03:26:33 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-05-25 12:47:22 -0400 |
commit | 341aa5ad1a8d677a65932c216f952af165ae98bb (patch) | |
tree | 0d1a89be488662168194c04493fc049a81141faf | |
parent | 44500a42c59f1c0f2a1f6f096ad1196d3a23534f (diff) |
staging: rtl8723bs: Fix camel-case in IS_FW_HEADER_EXIST_8723B().
Change the parameter of the macro to the snake case 'fw_hdr' instead
of '_pFwHdr'.
Signed-off-by: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8723bs/include/rtl8723b_hal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8723bs/include/rtl8723b_hal.h b/drivers/staging/rtl8723bs/include/rtl8723b_hal.h index 8ce4f7a9edc3..b4b54e3e6a43 100644 --- a/drivers/staging/rtl8723bs/include/rtl8723b_hal.h +++ b/drivers/staging/rtl8723bs/include/rtl8723b_hal.h | |||
@@ -43,8 +43,8 @@ | |||
43 | #define FW_8723B_START_ADDRESS 0x1000 | 43 | #define FW_8723B_START_ADDRESS 0x1000 |
44 | #define FW_8723B_END_ADDRESS 0x1FFF /* 0x5FFF */ | 44 | #define FW_8723B_END_ADDRESS 0x1FFF /* 0x5FFF */ |
45 | 45 | ||
46 | #define IS_FW_HEADER_EXIST_8723B(_pFwHdr) \ | 46 | #define IS_FW_HEADER_EXIST_8723B(fw_hdr) \ |
47 | ((le16_to_cpu(_pFwHdr->Signature) & 0xFFF0) == 0x5300) | 47 | ((le16_to_cpu(fw_hdr->Signature) & 0xFFF0) == 0x5300) |
48 | 48 | ||
49 | struct rt_firmware { | 49 | struct rt_firmware { |
50 | u32 ulFwLength; | 50 | u32 ulFwLength; |