RDMA/ipoib: Prefer unsigned int to bare use of unsigned

This commit replaces all the unsigned definitions in favour of 'unsigned
int' which is preferred.

Signed-off-by: Kamal Heib <kamalheib1@gmail.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
Kamal Heib
2018-07-05 00:52:48 +03:00
committed by Jason Gunthorpe
parent 299c36b1ef
commit 0578cdad19
4 changed files with 16 additions and 14 deletions

View File

@@ -1201,7 +1201,9 @@ static void ipoib_timeout(struct net_device *dev)
static int ipoib_hard_header(struct sk_buff *skb,
struct net_device *dev,
unsigned short type,
const void *daddr, const void *saddr, unsigned len)
const void *daddr,
const void *saddr,
unsigned int len)
{
struct ipoib_header *header;