Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba134078 authored by Vijaya Mohan Guvva's avatar Vijaya Mohan Guvva Committed by James Bottomley
Browse files

[SCSI] bfa: fix endianess issue for firmware stats



Fix endianess issue on Big-endian architecture for firmware statistics

Signed-off-by: default avatarVijaya Mohan Guvva <vmohan@brocade.com>
Signed-off-by: default avatarJames Bottomley <JBottomley@Parallels.com>
parent 36ec9712
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1858,7 +1858,7 @@ bfa_ioc_smem_read(struct bfa_ioc_s *ioc, void *tbuf, u32 soff, u32 sz)
	bfa_trc(ioc, len);
	for (i = 0; i < len; i++) {
		r32 = bfa_mem_read(ioc->ioc_regs.smem_page_start, loff);
		buf[i] = be32_to_cpu(r32);
		buf[i] = swab32(r32);
		loff += sizeof(u32);

		/*