All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stas Sergeev <stsp@aknet.ru>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Linux kernel <linux-kernel@vger.kernel.org>
Subject: [patch] fix module_param mistake in it821x
Date: Wed, 20 Jun 2007 22:42:13 +0400	[thread overview]
Message-ID: <46797505.1030508@aknet.ru> (raw)

[-- Attachment #1: Type: text/plain, Size: 227 bytes --]

Hello.

The attached patch fixes a trivial
mistake in a MODULE_PARAM_DESC of pata_it821x
driver. The parameter name in MODULE_PARAM_DESC
should match the one in module_param_named.

Signed-off-by: Stas Sergeev <stsp@aknet.ru>


[-- Attachment #2: it821xmodp.diff --]
[-- Type: text/x-patch, Size: 397 bytes --]

--- a/drivers/ata/pata_it821x.c	2007-04-27 12:46:35.000000000 +0400
+++ b/drivers/ata/pata_it821x.c	2007-06-20 18:16:20.000000000 +0400
@@ -828,7 +828,7 @@
 
 
 module_param_named(noraid, it8212_noraid, int, S_IRUGO);
-MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode");
+MODULE_PARM_DESC(noraid, "Force card into bypass mode");
 
 module_init(it821x_init);
 module_exit(it821x_exit);

             reply	other threads:[~2007-06-20 19:22 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-20 18:42 Stas Sergeev [this message]
2007-06-20 23:57 ` [patch] fix module_param mistake in it821x Jeff Garzik

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=46797505.1030508@aknet.ru \
    --to=stsp@aknet.ru \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.