isp: Fix endianness conversion in isp_read_flash_data()

Reported by:	Jenkins
Fixes:	10ed63fc06cb ("isp(4): Rework firmware handling/loading")

(cherry picked from commit 91d2a093dfaccdf288db663b6e9d47539ea1c1bf)
This commit is contained in:
Mark Johnston 2023-12-31 18:52:52 -05:00 committed by Alexander Motin
parent d095e86f05
commit 16f4d8fc14

View file

@ -4575,7 +4575,7 @@ isp_read_flash_data(ispsoftc_t *isp, uint32_t *dwptr, uint32_t faddr, uint32_t d
rval = isp_read_flash_dword(isp, faddr, dwptr);
if (rval != ISP_SUCCESS)
break;
htole32(*((uint32_t *)(dwptr)));
*dwptr = htole32(*dwptr);
}
return (rval);