Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 114938
b: refs/heads/master
c: 7a4b970
h: refs/heads/master
v: v3
  • Loading branch information
David Fries authored and Linus Torvalds committed Oct 16, 2008
1 parent 190330c commit 2effdc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 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: 4b9cf1bc329e626f3fa655370ee8cc156ab29a55
refs/heads/master: 7a4b9706ed762373f74311f96f5122fb74212192
15 changes: 2 additions & 13 deletions trunk/drivers/w1/masters/ds2490.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ static int ds_wait_status(struct ds_device *dev, struct ds_status *st)
return 0;
}

static int ds_reset(struct ds_device *dev, struct ds_status *st)
static int ds_reset(struct ds_device *dev)
{
int err;

Expand All @@ -466,14 +466,6 @@ static int ds_reset(struct ds_device *dev, struct ds_status *st)
if (err)
return err;

ds_wait_status(dev, st);
#if 0
if (st->command_buffer_status) {
printk(KERN_INFO "Short circuit.\n");
return -EIO;
}
#endif

return 0;
}

Expand Down Expand Up @@ -809,12 +801,9 @@ static u8 ds9490r_read_block(void *data, u8 *buf, int len)
static u8 ds9490r_reset(void *data)
{
struct ds_device *dev = data;
struct ds_status st;
int err;

memset(&st, 0, sizeof(st));

err = ds_reset(dev, &st);
err = ds_reset(dev);
if (err)
return 1;

Expand Down

0 comments on commit 2effdc2

Please sign in to comment.