Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118926
b: refs/heads/master
c: 34e453d
h: refs/heads/master
v: v3
  • Loading branch information
Madhusudhan Chikkature authored and Linus Torvalds committed Nov 13, 2008
1 parent 1928376 commit f51af39
Show file tree
Hide file tree
Showing 3 changed files with 4 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: 06de18085122b873012cb23f043e2bdcf5f50923
refs/heads/master: 34e453d45584ea9dc1f62833ace17c79a379deb4
1 change: 1 addition & 0 deletions trunk/drivers/w1/w1.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ void w1_slave_detach(struct w1_slave *sl);

u8 w1_triplet(struct w1_master *dev, int bdir);
void w1_write_8(struct w1_master *, u8);
u8 w1_read_8(struct w1_master *);
int w1_reset_bus(struct w1_master *);
u8 w1_calc_crc8(u8 *, int);
void w1_write_block(struct w1_master *, const u8 *, int);
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/w1/w1_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ u8 w1_triplet(struct w1_master *dev, int bdir)
* @param dev the master device
* @return the byte read
*/
static u8 w1_read_8(struct w1_master * dev)
u8 w1_read_8(struct w1_master *dev)
{
int i;
u8 res = 0;
Expand All @@ -230,6 +230,7 @@ static u8 w1_read_8(struct w1_master * dev)

return res;
}
EXPORT_SYMBOL_GPL(w1_read_8);

/**
* Writes a series of bytes.
Expand Down

0 comments on commit f51af39

Please sign in to comment.