Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139285
b: refs/heads/master
c: b935257
h: refs/heads/master
i:
  139283: 3dc52b1
v: v3
  • Loading branch information
Roel Kluin authored and Linus Torvalds committed Apr 1, 2009
1 parent 1fd82dc commit 3a4eda7
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: 032220ba310204be9cb2ddbbf848020fadc63ce6
refs/heads/master: b935257b1f98291ec1c8cbf7dbccbe0b20665bf6
4 changes: 2 additions & 2 deletions trunk/drivers/video/arkfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ static void ark_dac_read_regs(void *data, u8 *code, int count)

while (count != 0)
{
vga_wseq(NULL, 0x1C, regval | (code[0] & 4) ? 0x80 : 0);
vga_wseq(NULL, 0x1C, regval | (code[0] & 4 ? 0x80 : 0));
code[1] = vga_r(NULL, dac_regs[code[0] & 3]);
count--;
code += 2;
Expand All @@ -485,7 +485,7 @@ static void ark_dac_write_regs(void *data, u8 *code, int count)

while (count != 0)
{
vga_wseq(NULL, 0x1C, regval | (code[0] & 4) ? 0x80 : 0);
vga_wseq(NULL, 0x1C, regval | (code[0] & 4 ? 0x80 : 0));
vga_w(NULL, dac_regs[code[0] & 3], code[1]);
count--;
code += 2;
Expand Down

0 comments on commit 3a4eda7

Please sign in to comment.