Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 119203
b: refs/heads/master
c: 06b0d4d
h: refs/heads/master
i:
  119201: 7aae01f
  119199: 5e0b131
v: v3
  • Loading branch information
Stanley.Miao authored and Linus Torvalds committed Nov 20, 2008
1 parent 132ec5c commit be2b1ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: f55491a4bcbe8bab337bc00830ca12d703ea2613
refs/heads/master: 06b0d4dc14a44dd9b57321c24f7eeb10b345abd8
10 changes: 5 additions & 5 deletions trunk/drivers/w1/masters/omap_hdq.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ static struct platform_driver omap_hdq_driver = {
static u8 omap_w1_read_byte(void *_hdq);
static void omap_w1_write_byte(void *_hdq, u8 byte);
static u8 omap_w1_reset_bus(void *_hdq);
static void omap_w1_search_bus(void *_hdq, u8 search_type,
w1_slave_found_callback slave_found);
static void omap_w1_search_bus(void *_hdq, struct w1_master *master_dev,
u8 search_type, w1_slave_found_callback slave_found);


static struct w1_bus_master omap_w1_master = {
Expand Down Expand Up @@ -231,8 +231,8 @@ static u8 omap_w1_reset_bus(void *_hdq)
}

/* W1 search callback function */
static void omap_w1_search_bus(void *_hdq, u8 search_type,
w1_slave_found_callback slave_found)
static void omap_w1_search_bus(void *_hdq, struct w1_master *master_dev,
u8 search_type, w1_slave_found_callback slave_found)
{
u64 module_id, rn_le, cs, id;

Expand All @@ -249,7 +249,7 @@ static void omap_w1_search_bus(void *_hdq, u8 search_type,
cs = w1_calc_crc8((u8 *)&rn_le, 7);
id = (cs << 56) | module_id;

slave_found(_hdq, id);
slave_found(master_dev, id);
}

static int _omap_hdq_reset(struct hdq_data *hdq_data)
Expand Down

0 comments on commit be2b1ed

Please sign in to comment.