Re: [PATCH V2] net: qrtr: use protocol endiannes variable

2019-05-11 Thread David Miller
From: Nicholas Mc Guire Date: Sat, 11 May 2019 02:56:33 +0200 > sparse was unable to verify endiannes correctness due to reassignment > from le32_to_cpu to the same variable - fix this warning up by providing > a proper __le32 type and initializing it. This is not actually fixing > any bug - rath

[PATCH V2] net: qrtr: use protocol endiannes variable

2019-05-10 Thread Nicholas Mc Guire
sparse was unable to verify endiannes correctness due to reassignment from le32_to_cpu to the same variable - fix this warning up by providing a proper __le32 type and initializing it. This is not actually fixing any bug - rather just addressing the sparse warning. Signed-off-by: Nicholas Mc Guire