Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 203485
b: refs/heads/master
c: cb8b6a9
h: refs/heads/master
i:
  203483: edaaf76
v: v3
  • Loading branch information
Joe Perches authored and David S. Miller committed Jul 13, 2010
1 parent 822068c commit 9aede55
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: 54cbb1cab88ef20c284eef8c24a6d86fad989464
refs/heads/master: cb8b6a937712cc6c4a23766ddb74171bb19b528c
4 changes: 2 additions & 2 deletions trunk/drivers/net/caif/caif_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static ssize_t dbgfs_state(struct file *file, char __user *user_buf,
char *buf;
int len = 0;
ssize_t size;
struct cfspi *cfspi = (struct cfspi *)file->private_data;
struct cfspi *cfspi = file->private_data;

buf = kzalloc(DEBUGFS_BUF_SIZE, GFP_KERNEL);
if (!buf)
Expand Down Expand Up @@ -205,7 +205,7 @@ static ssize_t dbgfs_frame(struct file *file, char __user *user_buf,
ssize_t size;
struct cfspi *cfspi;

cfspi = (struct cfspi *)file->private_data;
cfspi = file->private_data;
buf = kzalloc(DEBUGFS_BUF_SIZE, GFP_KERNEL);
if (!buf)
return 0;
Expand Down

0 comments on commit 9aede55

Please sign in to comment.