Skip to content

Commit

Permalink
net: stmmac: replace unsigned by u32
Browse files Browse the repository at this point in the history
checkpatch complains about two unsigned without type after.
Since the value return is u32, it is simpler to replace it by u32 instead
of "unsigned int"

Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
LABBE Corentin authored and David S. Miller committed Feb 8, 2017
1 parent 64679e5 commit a6a3e02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static void print_pkt(unsigned char *buf, int len)

static inline u32 stmmac_tx_avail(struct stmmac_priv *priv)
{
unsigned avail;
u32 avail;

if (priv->dirty_tx > priv->cur_tx)
avail = priv->dirty_tx - priv->cur_tx - 1;
Expand All @@ -199,7 +199,7 @@ static inline u32 stmmac_tx_avail(struct stmmac_priv *priv)

static inline u32 stmmac_rx_dirty(struct stmmac_priv *priv)
{
unsigned dirty;
u32 dirty;

if (priv->dirty_rx <= priv->cur_rx)
dirty = priv->cur_rx - priv->dirty_rx;
Expand Down

0 comments on commit a6a3e02

Please sign in to comment.