Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31569
b: refs/heads/master
c: 6d8e9dd
h: refs/heads/master
i:
  31567: c8a01fd
v: v3
  • Loading branch information
Bryan O'Sullivan authored and Linus Torvalds committed Jul 1, 2006
1 parent 9f7f720 commit 9f1894b
Show file tree
Hide file tree
Showing 2 changed files with 6 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: 8307c28eecea917c4754075fbb85eb398a3bc516
refs/heads/master: 6d8e9dd050ea78862b6c5e2c873ad6407f9b2428
9 changes: 5 additions & 4 deletions trunk/drivers/infiniband/hw/ipath/ipath_diag.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static int ipath_read_umem64(struct ipath_devdata *dd, void __user *uaddr,
goto bail;
}
reg_addr++;
uaddr++;
uaddr += sizeof(u64);
}
ret = 0;
bail:
Expand Down Expand Up @@ -154,7 +154,7 @@ static int ipath_write_umem64(struct ipath_devdata *dd, void __iomem *caddr,
writeq(data, reg_addr);

reg_addr++;
uaddr++;
uaddr += sizeof(u64);
}
ret = 0;
bail:
Expand Down Expand Up @@ -192,7 +192,8 @@ static int ipath_read_umem32(struct ipath_devdata *dd, void __user *uaddr,
}

reg_addr++;
uaddr++;
uaddr += sizeof(u32);

}
ret = 0;
bail:
Expand Down Expand Up @@ -231,7 +232,7 @@ static int ipath_write_umem32(struct ipath_devdata *dd, void __iomem *caddr,
writel(data, reg_addr);

reg_addr++;
uaddr++;
uaddr += sizeof(u32);
}
ret = 0;
bail:
Expand Down

0 comments on commit 9f1894b

Please sign in to comment.