linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ingo Flaschberger <ingo.flaschberger@gmail.com>
To: Evgeniy Polyakov <zbr@ioremap.net>, linux-kernel@vger.kernel.org
Subject: [PATCH] 1wire: family module autoload fails because of upper/lower, case mismatch.
Date: Thu, 12 Apr 2018 02:20:12 +0200	[thread overview]
Message-ID: <46d6cf85-d9db-7355-ae85-0b4206384fc7@gmail.com> (raw)

1wire family module autoload fails because of upper/lower
  case mismatch.

Signed-off-by: Ingo Flaschberger <ingo.flaschberger@gmail.com>

---
  drivers/w1/w1.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c
index ab0931e..aa458f2 100644
--- a/drivers/w1/w1.c
+++ b/drivers/w1/w1.c
@@ -741,7 +741,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);
-- 
2.7.4

             reply	other threads:[~2018-04-12  0:20 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-12  0:20 Ingo Flaschberger [this message]
2018-05-01 14:10 [PATCH] 1wire: family module autoload fails because of upper/lower case mismatch Ingo Flaschberger
2018-05-01 18:54 ` Evgeniy Polyakov
2018-05-01 18:58   ` gregkh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=46d6cf85-d9db-7355-ae85-0b4206384fc7@gmail.com \
    --to=ingo.flaschberger@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=zbr@ioremap.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).