Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 065c0956 authored by Ingo Flaschberger's avatar Ingo Flaschberger Committed by Greg Kroah-Hartman
Browse files

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: default avatarIngo Flaschberger <ingo.flaschberger@gmail.com>
Acked-by: default avatarEvgeniy Polyakov <zbr@ioremap.net>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 955bc613
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -751,7 +751,7 @@ int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn)

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

	spin_lock(&w1_flock);