Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 204105
b: refs/heads/master
c: c5f1018
h: refs/heads/master
i:
  204103: 1243151
v: v3
  • Loading branch information
Wayne Boyer authored and James Bottomley committed Jul 27, 2010
1 parent f311876 commit 3f7361b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fa95d206e4a4fb549bdb9fe71091417f4912178f
refs/heads/master: c5f10187965f93ef7ef67da9c7c449b13b6dee1b
8 changes: 8 additions & 0 deletions trunk/drivers/scsi/ipr.h
Original file line number Diff line number Diff line change
Expand Up @@ -1860,4 +1860,12 @@ static inline int ipr_sdt_is_fmt2(u32 sdt_word)
return 0;
}

#ifndef writeq
static inline void writeq(u64 val, void __iomem *addr)
{
writel(((u32) (val >> 32)), addr);
writel(((u32) (val)), (addr + 4));
}
#endif

#endif /* _IPR_H */

0 comments on commit 3f7361b

Please sign in to comment.