Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 26836
b: refs/heads/master
c: 559eeda
h: refs/heads/master
v: v3
  • Loading branch information
Mark Lord authored and Jeff Garzik committed May 20, 2006
1 parent 9f724f2 commit 9c2504b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: a6432436c5e14b416f27c8f87c5bf0bc36771f49
refs/heads/master: 559eedad7f7764dacca33980127b4615011230e4
3 changes: 2 additions & 1 deletion trunk/drivers/scsi/sata_mv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1030,8 +1030,9 @@ static inline unsigned mv_inc_q_index(unsigned index)

static inline void mv_crqb_pack_cmd(u16 *cmdw, u8 data, u8 addr, unsigned last)
{
*cmdw = data | (addr << CRQB_CMD_ADDR_SHIFT) | CRQB_CMD_CS |
u16 tmp = data | (addr << CRQB_CMD_ADDR_SHIFT) | CRQB_CMD_CS |
(last ? CRQB_CMD_LAST : 0);
*cmdw = cpu_to_le16(tmp);
}

/**
Expand Down

0 comments on commit 9c2504b

Please sign in to comment.