All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
To: linux-mtd@lists.infradead.org
Cc: Randy Dunlap <randy.dunlap@oracle.com>,
	Stephen Rothwell <sfr@canb.auug.org.au>,
	dedekind1@gmail.com, linux-kernel@vger.kernel.org,
	Grant Likely <grant.likely@secretlab.ca>,
	linux-next@vger.kernel.org, David Woodhouse <dwmw2@infradead.org>
Subject: [PATCH 2/2] mtd/ofpart: add ofoldpart alias
Date: Mon, 27 Jun 2011 01:03:00 +0400	[thread overview]
Message-ID: <1309122180-12838-3-git-send-email-dbaryshkov@gmail.com> (raw)
In-Reply-To: <1309122180-12838-1-git-send-email-dbaryshkov@gmail.com>

ofpart.ko also provides ofoldpart MTD parser. Add respective
MODULE_ALIAS("ofoldpart"); declaration.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
---
 drivers/mtd/ofpart.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c
index aa33b8a..c4b8d17 100644
--- a/drivers/mtd/ofpart.c
+++ b/drivers/mtd/ofpart.c
@@ -176,3 +176,4 @@ module_init(ofpart_parser_init);
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
 MODULE_AUTHOR("Vitaly Wool, David Gibson");
+MODULE_ALIAS("ofoldpart");
-- 
1.7.5.4


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

WARNING: multiple messages have this Message-ID (diff)
From: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
To: linux-mtd@lists.infradead.org
Cc: Randy Dunlap <randy.dunlap@oracle.com>,
	Stephen Rothwell <sfr@canb.auug.org.au>,
	dedekind1@gmail.com, linux-kernel@vger.kernel.org,
	Grant Likely <grant.likely@secretlab.ca>,
	linux-next@vger.kernel.org, David Woodhouse <dwmw2@infradead.org>
Subject: [PATCH 2/2] mtd/ofpart: add ofoldpart alias
Date: Mon, 27 Jun 2011 01:03:00 +0400	[thread overview]
Message-ID: <1309122180-12838-3-git-send-email-dbaryshkov@gmail.com> (raw)
In-Reply-To: <1309122180-12838-1-git-send-email-dbaryshkov@gmail.com>

ofpart.ko also provides ofoldpart MTD parser. Add respective
MODULE_ALIAS("ofoldpart"); declaration.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
---
 drivers/mtd/ofpart.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c
index aa33b8a..c4b8d17 100644
--- a/drivers/mtd/ofpart.c
+++ b/drivers/mtd/ofpart.c
@@ -176,3 +176,4 @@ module_init(ofpart_parser_init);
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
 MODULE_AUTHOR("Vitaly Wool, David Gibson");
+MODULE_ALIAS("ofoldpart");
-- 
1.7.5.4

WARNING: multiple messages have this Message-ID (diff)
From: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
To: linux-mtd@lists.infradead.org
Cc: dedekind1@gmail.com, Grant Likely <grant.likely@secretlab.ca>,
	Randy Dunlap <randy.dunlap@oracle.com>,
	Stephen Rothwell <sfr@canb.auug.org.au>,
	David Woodhouse <dwmw2@infradead.org>,
	linux-next@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 2/2] mtd/ofpart: add ofoldpart alias
Date: Mon, 27 Jun 2011 01:03:00 +0400	[thread overview]
Message-ID: <1309122180-12838-3-git-send-email-dbaryshkov@gmail.com> (raw)
In-Reply-To: <1309122180-12838-1-git-send-email-dbaryshkov@gmail.com>

ofpart.ko also provides ofoldpart MTD parser. Add respective
MODULE_ALIAS("ofoldpart"); declaration.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
---
 drivers/mtd/ofpart.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c
index aa33b8a..c4b8d17 100644
--- a/drivers/mtd/ofpart.c
+++ b/drivers/mtd/ofpart.c
@@ -176,3 +176,4 @@ module_init(ofpart_parser_init);
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
 MODULE_AUTHOR("Vitaly Wool, David Gibson");
+MODULE_ALIAS("ofoldpart");
-- 
1.7.5.4


  parent reply	other threads:[~2011-06-26 21:03 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-26 21:02 [PATCH 0/2] finish modularization of ofpart parser Dmitry Eremin-Solenikov
2011-06-26 21:02 ` Dmitry Eremin-Solenikov
2011-06-26 21:02 ` Dmitry Eremin-Solenikov
2011-06-26 21:02 ` [PATCH 1/2] mtd: make ofpart buildable as a separate module Dmitry Eremin-Solenikov
2011-06-26 21:02   ` Dmitry Eremin-Solenikov
2011-06-26 21:02   ` Dmitry Eremin-Solenikov
2011-06-26 23:29   ` Randy Dunlap
2011-06-26 23:29     ` Randy Dunlap
2011-06-26 23:29     ` Randy Dunlap
2011-06-27  5:49   ` Artem Bityutskiy
2011-06-27  5:49     ` Artem Bityutskiy
2011-06-27  5:49     ` Artem Bityutskiy
2011-06-26 21:03 ` Dmitry Eremin-Solenikov [this message]
2011-06-26 21:03   ` [PATCH 2/2] mtd/ofpart: add ofoldpart alias Dmitry Eremin-Solenikov
2011-06-26 21:03   ` Dmitry Eremin-Solenikov
2011-06-26 23:35   ` Grant Likely
2011-06-26 23:35     ` Grant Likely
2011-06-26 23:35     ` Grant Likely
2011-06-27  5:45   ` Artem Bityutskiy
2011-06-27  5:45     ` Artem Bityutskiy
2011-06-27  5:45     ` Artem Bityutskiy
2011-06-27  5:51     ` Dmitry Eremin-Solenikov
2011-06-27  5:51       ` Dmitry Eremin-Solenikov
2011-06-27  5:51       ` Dmitry Eremin-Solenikov
2011-06-27  6:03       ` Artem Bityutskiy
2011-06-27  6:03         ` Artem Bityutskiy
2011-06-27  6:03         ` Artem Bityutskiy
2011-06-27 12:34         ` Dmitry Eremin-Solenikov
2011-06-27 12:34           ` Dmitry Eremin-Solenikov
2011-06-27 12:34           ` Dmitry Eremin-Solenikov
2011-06-28  7:41           ` Artem Bityutskiy
2011-06-28  7:41             ` Artem Bityutskiy
2011-06-28  7:41             ` Artem Bityutskiy
2011-06-28  8:09             ` Dmitry Eremin-Solenikov
2011-06-28  8:09               ` Dmitry Eremin-Solenikov
2011-06-28  8:09               ` Dmitry Eremin-Solenikov

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=1309122180-12838-3-git-send-email-dbaryshkov@gmail.com \
    --to=dbaryshkov@gmail.com \
    --cc=dedekind1@gmail.com \
    --cc=dwmw2@infradead.org \
    --cc=grant.likely@secretlab.ca \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=linux-next@vger.kernel.org \
    --cc=randy.dunlap@oracle.com \
    --cc=sfr@canb.auug.org.au \
    /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.