]> asedeno.scripts.mit.edu Git - linux.git/commit
RDMA/hns: Fix bad endianess of port_pd variable
authorLeon Romanovsky <leonro@mellanox.com>
Tue, 19 Mar 2019 09:10:08 +0000 (11:10 +0200)
committerJason Gunthorpe <jgg@mellanox.com>
Tue, 2 Apr 2019 13:40:41 +0000 (10:40 -0300)
commit6734b2973565e36659e97e12ab0d0faf1d9f3fbe
treec381a32db94c1fa2312d1ba1dd52d9150ef42f3a
parentff23dfa134576e071ace69e91761d229a0f73139
RDMA/hns: Fix bad endianess of port_pd variable

port_pd is treated as le32 in declaration and read, fix assignment to be
in le32 too. This change fixes the following compilation warnings.

drivers/infiniband/hw/hns/hns_roce_ah.c:67:24: warning: incorrect type
in assignment (different base types)
drivers/infiniband/hw/hns/hns_roce_ah.c:67:24: expected restricted __le32 [usertype] port_pd
drivers/infiniband/hw/hns/hns_roce_ah.c:67:24: got restricted __be32 [usertype]

Fixes: 9a4435375cd1 ("IB/hns: Add driver files for hns RoCE driver")
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Reviewed-by: Gal Pressman <galpress@amazon.com>
Reviewed-by: Lijun Ou <ouliun@huawei.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/hns/hns_roce_ah.c