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

Commit 1d6e658e authored by Roland Dreier's avatar Roland Dreier
Browse files

RDMA/cxgb3: Endianness annotation for irs field



t3_rdma_init_wr.irs is a big-endian field, so declare it as __be32.
This fixes one sparse warning.

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 1a7d2dce
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -315,7 +315,7 @@ struct t3_rdma_init_wr {
	__be32 ird;
	__be32 ird;
	__be64 qp_dma_addr;	/* 7 */
	__be64 qp_dma_addr;	/* 7 */
	__be32 qp_dma_size;	/* 8 */
	__be32 qp_dma_size;	/* 8 */
	u32 irs;
	__be32 irs;
};
};


struct t3_genbit {
struct t3_genbit {