mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 23:00:21 +00:00
w1: mxc_w1: Fix incorrect "presence" status
W1 reset_bus() should return zero if slave device is present. This patch fix this issue. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b29f680c4f
commit
37014f5bd0
@ -66,7 +66,7 @@ static u8 mxc_w1_ds2_reset_bus(void *data)
|
||||
|
||||
udelay(100);
|
||||
}
|
||||
return !!(reg_val & MXC_W1_CONTROL_PST);
|
||||
return !(reg_val & MXC_W1_CONTROL_PST);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user