aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/w1/slaves/w1_ds28e04.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/w1/slaves/w1_ds28e04.c b/drivers/w1/slaves/w1_ds28e04.c
index f652db3782bf..4aa1aa90480d 100644
--- a/drivers/w1/slaves/w1_ds28e04.c
+++ b/drivers/w1/slaves/w1_ds28e04.c
@@ -309,8 +309,10 @@ static ssize_t w1_f1C_write_pio(struct file *filp, struct kobject *kobj,
309 mutex_lock(&sl->master->mutex); 309 mutex_lock(&sl->master->mutex);
310 310
311 /* Write the PIO data */ 311 /* Write the PIO data */
312 if (w1_reset_select_slave(sl)) 312 if (w1_reset_select_slave(sl)) {
313 mutex_unlock(&sl->master->mutex);
313 return -1; 314 return -1;
315 }
314 316
315 /* set bit 7..2 to value '1' */ 317 /* set bit 7..2 to value '1' */
316 *buf = *buf | 0xFC; 318 *buf = *buf | 0xFC;