Skip to content

Commit

Permalink
ieee802154: adf7242: use unsigned int over only unsigned
Browse files Browse the repository at this point in the history
Bring it in line with the rest of the ieee802154 drivers.
Found by checkpatch.

Signed-off-by: Stefan Schmidt <stefan@osg.samsung.com>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Stefan Schmidt <stefan@osg.samsung.com>
  • Loading branch information
Stefan Schmidt committed Nov 6, 2017
1 parent 0be7fc7 commit 395cef4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/net/ieee802154/adf7242.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ static int adf7242_status(struct adf7242_local *lp, u8 *stat)
return status;
}

static int adf7242_wait_status(struct adf7242_local *lp, unsigned status,
unsigned mask, int line)
static int adf7242_wait_status(struct adf7242_local *lp, unsigned int status,
unsigned int mask, int line)
{
int cnt = 0, ret = 0;
u8 stat;
Expand Down Expand Up @@ -477,7 +477,7 @@ static int adf7242_write_reg(struct adf7242_local *lp, u16 addr, u8 data)
return status;
}

static int adf7242_cmd(struct adf7242_local *lp, unsigned cmd)
static int adf7242_cmd(struct adf7242_local *lp, unsigned int cmd)
{
int status;

Expand Down Expand Up @@ -920,7 +920,7 @@ static void adf7242_debug(u8 irq1)
static irqreturn_t adf7242_isr(int irq, void *data)
{
struct adf7242_local *lp = data;
unsigned xmit;
unsigned int xmit;
u8 irq1;

adf7242_wait_status(lp, RC_STATUS_PHY_RDY, RC_STATUS_MASK, __LINE__);
Expand Down

0 comments on commit 395cef4

Please sign in to comment.