Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 44180
b: refs/heads/master
c: 0f0d84e
h: refs/heads/master
v: v3
  • Loading branch information
Haavard Skinnemoen authored and Jeff Garzik committed Dec 11, 2006
1 parent f1045dd commit f3bd5f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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: d836cae4f683211f14c1fd8184f478622b185164
refs/heads/master: 0f0d84e52cb2a6e0b1d101484a92121410135da1
2 changes: 1 addition & 1 deletion trunk/drivers/net/macb.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ static void macb_update_stats(struct macb *bp)
WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);

for(; p < end; p++, reg++)
*p += readl(reg);
*p += __raw_readl(reg);
}

static void macb_periodic_task(struct work_struct *work)
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/net/macb.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,9 @@

/* Register access macros */
#define macb_readl(port,reg) \
readl((port)->regs + MACB_##reg)
__raw_readl((port)->regs + MACB_##reg)
#define macb_writel(port,reg,value) \
writel((value), (port)->regs + MACB_##reg)
__raw_writel((value), (port)->regs + MACB_##reg)

struct dma_desc {
u32 addr;
Expand Down

0 comments on commit f3bd5f0

Please sign in to comment.