* [PATCH] Documentation: Fix minor typos in pinctrl.txt
@ 2011-11-15 5:36 Rajendra Nayak
2011-11-15 21:24 ` Randy Dunlap
2011-11-17 8:46 ` Linus Walleij
0 siblings, 2 replies; 3+ messages in thread
From: Rajendra Nayak @ 2011-11-15 5:36 UTC (permalink / raw)
To: linus.walleij, rdunlap; +Cc: linux-kernel, linaro-dev, Rajendra Nayak
Fix some minor typos in the pinctrl documentation.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
---
Documentation/pinctrl.txt | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/Documentation/pinctrl.txt b/Documentation/pinctrl.txt
index b04cb7d..c849a09 100644
--- a/Documentation/pinctrl.txt
+++ b/Documentation/pinctrl.txt
@@ -91,7 +91,7 @@ int __init foo_probe(void)
Pins usually have fancier names than this. You can find these in the dataheet
for your chip. Notice that the core pinctrl.h file provides a fancy macro
called PINCTRL_PIN() to create the struct entries. As you can see I enumerated
-the pins from 0 in the upper left corner to 63 in the lower right corner,
+the pins from 0 in the lower left corner to 63 in the upper right corner,
this enumeration was arbitrarily chosen, in practice you need to think
through your numbering system so that it matches the layout of registers
and such things in your driver, or the code may become complicated. You must
@@ -218,7 +218,7 @@ static struct pinctrl_gpio_range gpio_range_a = {
.gc = &chip_a;
};
-static struct pinctrl_gpio_range gpio_range_a = {
+static struct pinctrl_gpio_range gpio_range_b = {
.name = "chip b",
.id = 0,
.base = 48,
@@ -762,42 +762,42 @@ case), we define a mapping like this:
.name "2bit"
.ctrl_dev_name = "pinctrl.0",
.function = "mmc0",
- .group = "mmc0_0_grp",
+ .group = "mmc0_1_grp",
.dev_name = "foo-mmc.0",
},
{
.name "4bit"
.ctrl_dev_name = "pinctrl.0",
.function = "mmc0",
- .group = "mmc0_0_grp",
+ .group = "mmc0_1_grp",
.dev_name = "foo-mmc.0",
},
{
.name "4bit"
.ctrl_dev_name = "pinctrl.0",
.function = "mmc0",
- .group = "mmc0_1_grp",
+ .group = "mmc0_2_grp",
.dev_name = "foo-mmc.0",
},
{
.name "8bit"
.ctrl_dev_name = "pinctrl.0",
.function = "mmc0",
- .group = "mmc0_0_grp",
+ .group = "mmc0_1_grp",
.dev_name = "foo-mmc.0",
},
{
.name "8bit"
.ctrl_dev_name = "pinctrl.0",
.function = "mmc0",
- .group = "mmc0_1_grp",
+ .group = "mmc0_2_grp",
.dev_name = "foo-mmc.0",
},
{
.name "8bit"
.ctrl_dev_name = "pinctrl.0",
.function = "mmc0",
- .group = "mmc0_2_grp",
+ .group = "mmc0_3_grp",
.dev_name = "foo-mmc.0",
},
...
--
1.7.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Documentation: Fix minor typos in pinctrl.txt
2011-11-15 5:36 [PATCH] Documentation: Fix minor typos in pinctrl.txt Rajendra Nayak
@ 2011-11-15 21:24 ` Randy Dunlap
2011-11-17 8:46 ` Linus Walleij
1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2011-11-15 21:24 UTC (permalink / raw)
To: Rajendra Nayak; +Cc: linus.walleij, linux-kernel, linaro-dev
On 11/14/2011 09:36 PM, Rajendra Nayak wrote:
> Fix some minor typos in the pinctrl documentation.
>
> Signed-off-by: Rajendra Nayak <rnayak@ti.com>
> ---
> Documentation/pinctrl.txt | 16 ++++++++--------
> 1 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/Documentation/pinctrl.txt b/Documentation/pinctrl.txt
> index b04cb7d..c849a09 100644
> --- a/Documentation/pinctrl.txt
> +++ b/Documentation/pinctrl.txt
> @@ -91,7 +91,7 @@ int __init foo_probe(void)
> Pins usually have fancier names than this. You can find these in the dataheet
fix typo: datasheet
> for your chip. Notice that the core pinctrl.h file provides a fancy macro
> called PINCTRL_PIN() to create the struct entries. As you can see I enumerated
> -the pins from 0 in the upper left corner to 63 in the lower right corner,
> +the pins from 0 in the lower left corner to 63 in the upper right corner,
fix run-on sentences:
the pins from 0 in the lower left corner to 63 in the upper right corner.
This enumeration was arbitrarily chosen; in practice you need to think
> this enumeration was arbitrarily chosen, in practice you need to think
> through your numbering system so that it matches the layout of registers
> and such things in your driver, or the code may become complicated. You must
--
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Documentation: Fix minor typos in pinctrl.txt
2011-11-15 5:36 [PATCH] Documentation: Fix minor typos in pinctrl.txt Rajendra Nayak
2011-11-15 21:24 ` Randy Dunlap
@ 2011-11-17 8:46 ` Linus Walleij
1 sibling, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2011-11-17 8:46 UTC (permalink / raw)
To: Rajendra Nayak; +Cc: linus.walleij, rdunlap, linaro-dev, linux-kernel
On Tue, Nov 15, 2011 at 6:36 AM, Rajendra Nayak <rnayak@ti.com> wrote:
> Fix some minor typos in the pinctrl documentation.
(...)
> -the pins from 0 in the upper left corner to 63 in the lower right corner,
> +the pins from 0 in the lower left corner to 63 in the upper right corner,
It's the PINCTRL_PIN() defintions that are wrong, this text is correct.
So it should be:
const struct pinctrl_pin_desc foo_pins[] = {
PINCTRL_PIN(0, "A8"),
PINCTRL_PIN(1, "B8"),
PINCTRL_PIN(2, "C8"),
...
PINCTRL_PIN(61, "F1"),
PINCTRL_PIN(62, "G1"),
PINCTRL_PIN(63, "H1"),
};
Fixed this, will send another patch.
> -static struct pinctrl_gpio_range gpio_range_a = {
> +static struct pinctrl_gpio_range gpio_range_b = {
OK fixed this.
> .name = "chip b",
> .id = 0,
> .base = 48,
> @@ -762,42 +762,42 @@ case), we define a mapping like this:
> .name "2bit"
> .ctrl_dev_name = "pinctrl.0",
> .function = "mmc0",
> - .group = "mmc0_0_grp",
> + .group = "mmc0_1_grp",
> .dev_name = "foo-mmc.0",
> },
> {
> .name "4bit"
> .ctrl_dev_name = "pinctrl.0",
> .function = "mmc0",
> - .group = "mmc0_0_grp",
> + .group = "mmc0_1_grp",
> .dev_name = "foo-mmc.0",
> },
> {
> .name "4bit"
> .ctrl_dev_name = "pinctrl.0",
> .function = "mmc0",
> - .group = "mmc0_1_grp",
> + .group = "mmc0_2_grp",
> .dev_name = "foo-mmc.0",
> },
> {
> .name "8bit"
> .ctrl_dev_name = "pinctrl.0",
> .function = "mmc0",
> - .group = "mmc0_0_grp",
> + .group = "mmc0_1_grp",
> .dev_name = "foo-mmc.0",
> },
> {
> .name "8bit"
> .ctrl_dev_name = "pinctrl.0",
> .function = "mmc0",
> - .group = "mmc0_1_grp",
> + .group = "mmc0_2_grp",
> .dev_name = "foo-mmc.0",
> },
> {
> .name "8bit"
> .ctrl_dev_name = "pinctrl.0",
> .function = "mmc0",
> - .group = "mmc0_2_grp",
> + .group = "mmc0_3_grp",
> .dev_name = "foo-mmc.0",
> },
OK fixed this...
I'll submit a separate patch with your
Reported-by: and Randy's fixes folded in.
Thanks,
Linus Walleij
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-11-17 8:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-15 5:36 [PATCH] Documentation: Fix minor typos in pinctrl.txt Rajendra Nayak
2011-11-15 21:24 ` Randy Dunlap
2011-11-17 8:46 ` Linus Walleij
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®