projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2df7a7d
)
w1: fix for loop in w1_f29_remove_slave()
author
Dan Carpenter
<
[email protected]
>
Thu, 25 Aug 2011 22:59:04 +0000
(15:59 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 25 Aug 2011 23:25:33 +0000
(16:25 -0700)
The for loop was looking for i <= 0 instead of i >= 0 so this function
never did anything. Also we started with i = NB_SYSFS_BIN_FILES instead
of "NB_SYSFS_BIN_FILES - 1" which is an off by one bug.
Reported-by: Bojan Prtvar <
[email protected]
>
Signed-off-by: Dan Carpenter <
[email protected]
>
Acked-by: Jean-Franois Dagenais <
[email protected]
>
Cc: Evgeniy Polyakov <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/w1/slaves/w1_ds2408.c
patch
|
blob
|
history
diff --git
a/drivers/w1/slaves/w1_ds2408.c
b/drivers/w1/slaves/w1_ds2408.c
index c37781899d90369b9bae86e58af2910ab4243666..7c8cdb8aed26048895465b72c9df1bdc8fccd887 100644
(file)
--- a/
drivers/w1/slaves/w1_ds2408.c
+++ b/
drivers/w1/slaves/w1_ds2408.c
@@
-373,7
+373,7
@@
static int w1_f29_add_slave(struct w1_slave *sl)
static void w1_f29_remove_slave(struct w1_slave *sl)
{
int i;
- for (i = NB_SYSFS_BIN_FILES
; i <
= 0; --i)
+ for (i = NB_SYSFS_BIN_FILES
- 1; i >
= 0; --i)
sysfs_remove_bin_file(&sl->dev.kobj,
&(w1_f29_sysfs_bin_files[i]));
}