Skip to content

Commit

Permalink
Merge refs/heads/upstream-fixes from master.kernel.org:/pub/scm/linux…
Browse files Browse the repository at this point in the history
…/kernel/git/jgarzik/netdev-2.6
  • Loading branch information
Linus Torvalds committed Aug 30, 2005
2 parents a8e4f43 + 7ef24b6 commit 1fdab81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/s2io.h
Original file line number Diff line number Diff line change
Expand Up @@ -762,8 +762,8 @@ static inline u64 readq(void __iomem *addr)
{
u64 ret = 0;
ret = readl(addr + 4);
(u64) ret <<= 32;
(u64) ret |= readl(addr);
ret <<= 32;
ret |= readl(addr);

return ret;
}
Expand Down

0 comments on commit 1fdab81

Please sign in to comment.