Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337478
b: refs/heads/master
c: 4933d39
h: refs/heads/master
v: v3
  • Loading branch information
Devendra Naga authored and Greg Kroah-Hartman committed Oct 30, 2012
1 parent 07227bf commit 2b9816a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 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: 958bcf5b36f5bbe7b5a3bb423181f8b745bfe23b
refs/heads/master: 4933d3935c41b9c2e1e402970ea2b0a41efdf6f2
12 changes: 4 additions & 8 deletions trunk/drivers/staging/csr/os.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,8 @@ dump(void *mem, u16 len)
return;
}
for (i = 0; i < len; i++) {
if (col == 0) {
if (col == 0)
printk("0x%02X: ", i);
}

printk(" %02X", pdata[i]);

Expand All @@ -423,9 +422,8 @@ dump(void *mem, u16 len)
col = 0;
}
}
if (col) {
if (col)
printk("\n");
}
} /* dump() */


Expand All @@ -438,9 +436,8 @@ dump16(void *mem, u16 len)
printk("timestamp %s \n", print_time());
#endif /* ANDROID_TIMESTAMP */
for (i = 0; i < len; i+=2) {
if (col == 0) {
if (col == 0)
printk("0x%02X: ", i);
}

printk(" %04X", *p++);

Expand All @@ -449,9 +446,8 @@ dump16(void *mem, u16 len)
col = 0;
}
}
if (col) {
if (col)
printk("\n");
}
}


Expand Down

0 comments on commit 2b9816a

Please sign in to comment.