Messages in this thread Patch in this message |  | | From | Michael Straube <> | Subject | [PATCH v4 2/8] staging: r8188eu: convert u32 fields of rt_firmware_hdr to __le32 | Date | Sun, 17 Apr 2022 19:54:35 +0200 |
| |
Convert the u32 fields of struct rt_firmware_hdr to __le32 for consistency.
Signed-off-by: Michael Straube <straube.linux@gmail.com> --- v4: - no changes
v3: - this patch was part of patch 1/8 in v2
drivers/staging/r8188eu/core/rtw_fw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/r8188eu/core/rtw_fw.c b/drivers/staging/r8188eu/core/rtw_fw.c index eb4ab11f6b28..7cd08268f3b9 100644 --- a/drivers/staging/r8188eu/core/rtw_fw.c +++ b/drivers/staging/r8188eu/core/rtw_fw.c @@ -42,11 +42,11 @@ struct rt_firmware_hdr { /* LONG WORD 2 ---- */ __le32 SvnIdx; /* The SVN entry index */ - u32 Rsvd3; + __le32 Rsvd3; /* LONG WORD 3 ---- */ - u32 Rsvd4; - u32 Rsvd5; + __le32 Rsvd4; + __le32 Rsvd5; }; static void fw_download_enable(struct adapter *padapter, bool enable) -- 2.35.1
|  |