aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/w1/w1.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/w1/w1.c')
-rw-r--r--drivers/w1/w1.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c
index 25640f681729..aac03f151fe0 100644
--- a/drivers/w1/w1.c
+++ b/drivers/w1/w1.c
@@ -772,6 +772,11 @@ void w1_search(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb
772 /* extract the direction taken & update the device number */ 772 /* extract the direction taken & update the device number */
773 tmp64 = (triplet_ret >> 2); 773 tmp64 = (triplet_ret >> 2);
774 rn |= (tmp64 << i); 774 rn |= (tmp64 << i);
775
776 if (test_bit(W1_MASTER_NEED_EXIT, &dev->flags)) {
777 printk(KERN_INFO "Abort w1_search (exiting)\n");
778 return;
779 }
775 } 780 }
776 781
777 if ( (triplet_ret & 0x03) != 0x03 ) { 782 if ( (triplet_ret & 0x03) != 0x03 ) {