Skip to content

Commit 065c095

Browse files
ctcgregkh
authored andcommitted
1wire: family module autoload fails because of upper/lower case mismatch.
1wire family module autoload fails because of upper/lower  case mismatch. Signed-off-by: Ingo Flaschberger <[email protected]> Acked-by: Evgeniy Polyakov <[email protected]> Cc: stable <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 955bc61 commit 065c095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/w1/w1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn)
751751

752752
/* slave modules need to be loaded in a context with unlocked mutex */
753753
mutex_unlock(&dev->mutex);
754-
request_module("w1-family-0x%02x", rn->family);
754+
request_module("w1-family-0x%02X", rn->family);
755755
mutex_lock(&dev->mutex);
756756

757757
spin_lock(&w1_flock);

0 commit comments

Comments
 (0)