Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 130722
b: refs/heads/master
c: 9711a53
h: refs/heads/master
v: v3
  • Loading branch information
Atsushi Nemoto authored and Bartlomiej Zolnierkiewicz committed Feb 2, 2009
1 parent 2d24f48 commit ff27af2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: a77dcc437c1c3bc73887ecac8a304e4adcabb9b7
refs/heads/master: 9711a53721616b0f4c5f21c5811e5c4ef82be46f
4 changes: 2 additions & 2 deletions trunk/drivers/ide/tx4939ide.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ static int tx4939ide_build_dmatable(ide_drive_t *drive, struct request *rq)
bcount = cur_len;
/*
* This workaround for zero count seems required.
* (standard ide_build_dmatable do it too)
* (standard ide_build_dmatable does it too)
*/
if ((bcount & 0xffff) == 0x0000)
if (bcount == 0x10000)
bcount = 0x8000;
*table++ = bcount & 0xffff;
*table++ = cur_addr;
Expand Down

0 comments on commit ff27af2

Please sign in to comment.