Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 351349
b: refs/heads/master
c: fb01747
h: refs/heads/master
i:
  351347: 8b13334
v: v3
  • Loading branch information
Kim Phillips authored and David S. Miller committed Jan 11, 2013
1 parent 4057e87 commit 2493cd3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 28a28283f8220e0b397a18f624fbcbbe046b063c
refs/heads/master: fb0174723e578f9023f1237143fb81e75f470f60
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/freescale/gianfar.h
Original file line number Diff line number Diff line change
Expand Up @@ -1136,16 +1136,16 @@ static inline int gfar_has_errata(struct gfar_private *priv,
return priv->errata & err;
}

static inline u32 gfar_read(volatile unsigned __iomem *addr)
static inline u32 gfar_read(unsigned __iomem *addr)
{
u32 val;
val = in_be32(addr);
val = ioread32be(addr);
return val;
}

static inline void gfar_write(volatile unsigned __iomem *addr, u32 val)
static inline void gfar_write(unsigned __iomem *addr, u32 val)
{
out_be32(addr, val);
iowrite32be(val, addr);
}

static inline void gfar_write_filer(struct gfar_private *priv,
Expand Down

0 comments on commit 2493cd3

Please sign in to comment.