* [U-Boot-Users] [PATCH] fdt: Fix typo in variable name.
@ 2008-06-20 20:26 Detlev Zundel
2008-06-22 17:09 ` Jerry Van Baren
2008-07-05 22:32 ` Wolfgang Denk
0 siblings, 2 replies; 5+ messages in thread
From: Detlev Zundel @ 2008-06-20 20:26 UTC (permalink / raw)
To: u-boot
Signed-off-by: Detlev Zundel <dzu@denx.de>
---
common/fdt_support.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/common/fdt_support.c b/common/fdt_support.c
index e58b294..3828228 100644
--- a/common/fdt_support.c
+++ b/common/fdt_support.c
@@ -63,7 +63,7 @@ int fdt_find_and_setprop(void *fdt, const char *node, const char *prop,
}
#ifdef CONFIG_OF_STDOUT_VIA_ALIAS
-static int fdt_fixup_stdout(void *fdt, int choosenoff)
+static int fdt_fixup_stdout(void *fdt, int chosenoff)
{
int err = 0;
#ifdef CONFIG_CONS_INDEX
@@ -82,7 +82,7 @@ static int fdt_fixup_stdout(void *fdt, int choosenoff)
err = -FDT_ERR_NOSPACE;
if (p) {
memcpy(p, path, len);
- err = fdt_setprop(fdt, choosenoff,
+ err = fdt_setprop(fdt, chosenoff,
"linux,stdout-path", p, len);
free(p);
}
--
1.5.4.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [U-Boot-Users] [PATCH] fdt: Fix typo in variable name.
2008-06-20 20:26 [U-Boot-Users] [PATCH] fdt: Fix typo in variable name Detlev Zundel
@ 2008-06-22 17:09 ` Jerry Van Baren
2008-06-30 14:03 ` Detlev Zundel
2008-07-05 22:32 ` Wolfgang Denk
1 sibling, 1 reply; 5+ messages in thread
From: Jerry Van Baren @ 2008-06-22 17:09 UTC (permalink / raw)
To: u-boot
Detlev Zundel wrote:
> Signed-off-by: Detlev Zundel <dzu@denx.de>
> ---
> common/fdt_support.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/common/fdt_support.c b/common/fdt_support.c
> index e58b294..3828228 100644
> --- a/common/fdt_support.c
> +++ b/common/fdt_support.c
> @@ -63,7 +63,7 @@ int fdt_find_and_setprop(void *fdt, const char *node, const char *prop,
> }
>
> #ifdef CONFIG_OF_STDOUT_VIA_ALIAS
> -static int fdt_fixup_stdout(void *fdt, int choosenoff)
> +static int fdt_fixup_stdout(void *fdt, int chosenoff)
> {
> int err = 0;
> #ifdef CONFIG_CONS_INDEX
> @@ -82,7 +82,7 @@ static int fdt_fixup_stdout(void *fdt, int choosenoff)
> err = -FDT_ERR_NOSPACE;
> if (p) {
> memcpy(p, path, len);
> - err = fdt_setprop(fdt, choosenoff,
> + err = fdt_setprop(fdt, chosenoff,
> "linux,stdout-path", p, len);
> free(p);
> }
Dear Wolfgang,
Could you apply this directly? I'm on vacation this week and I would
appreciate the help.
Thanks,
gvb
Currently at Tower Marine, Douglas, MI, USofA :-)
<http://maps.google.com/maps?f=q&hl=en&geocode=&q=tower+marine,+douglas+michigan&ie=UTF8&ll=42.650501,-86.198988&spn=0.028029,0.068579&t=h&z=14>
^ permalink raw reply [flat|nested] 5+ messages in thread* [U-Boot-Users] [PATCH] fdt: Fix typo in variable name.
2008-06-22 17:09 ` Jerry Van Baren
@ 2008-06-30 14:03 ` Detlev Zundel
2008-07-01 2:17 ` Jerry Van Baren
0 siblings, 1 reply; 5+ messages in thread
From: Detlev Zundel @ 2008-06-30 14:03 UTC (permalink / raw)
To: u-boot
Hi Jerry,
> Detlev Zundel wrote:
>> Signed-off-by: Detlev Zundel <dzu@denx.de>
>> ---
>> common/fdt_support.c | 4 ++--
>> 1 files changed, 2 insertions(+), 2 deletions(-)
[...]
> Dear Wolfgang,
>
> Could you apply this directly? I'm on vacation this week and I would
> appreciate the help.
I really didn't want to push this, as I do not deem it in any way
important. So my original plan was to wait for Wolfgang to pull it in
in his usual cycle.
Because of a high-priority bug-fix for 4xx, it now found its way into
master anyway, so no need for you to pick it up.
Cheers
Detlev
--
0x2B | ~0x2B
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH] fdt: Fix typo in variable name.
2008-06-30 14:03 ` Detlev Zundel
@ 2008-07-01 2:17 ` Jerry Van Baren
0 siblings, 0 replies; 5+ messages in thread
From: Jerry Van Baren @ 2008-07-01 2:17 UTC (permalink / raw)
To: u-boot
Detlev Zundel wrote:
> Hi Jerry,
>
>> Detlev Zundel wrote:
>>> Signed-off-by: Detlev Zundel <dzu@denx.de>
>>> ---
>>> common/fdt_support.c | 4 ++--
>>> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> [...]
>
>> Dear Wolfgang,
>>
>> Could you apply this directly? I'm on vacation this week and I would
>> appreciate the help.
>
> I really didn't want to push this, as I do not deem it in any way
> important. So my original plan was to wait for Wolfgang to pull it in
> in his usual cycle.
>
> Because of a high-priority bug-fix for 4xx, it now found its way into
> master anyway, so no need for you to pick it up.
>
> Cheers
> Detlev
Thanks,
gvb
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH] fdt: Fix typo in variable name.
2008-06-20 20:26 [U-Boot-Users] [PATCH] fdt: Fix typo in variable name Detlev Zundel
2008-06-22 17:09 ` Jerry Van Baren
@ 2008-07-05 22:32 ` Wolfgang Denk
1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2008-07-05 22:32 UTC (permalink / raw)
To: u-boot
In message <1213993584-2974-1-git-send-email-dzu@denx.de> you wrote:
> Signed-off-by: Detlev Zundel <dzu@denx.de>
> ---
> common/fdt_support.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Remember, Information is not knowledge; Knowledge is not Wisdom;
Wisdom is not truth; Truth is not beauty; Beauty is not love; Love is
not music; Music is the best." - Frank Zappa
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-07-05 22:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-20 20:26 [U-Boot-Users] [PATCH] fdt: Fix typo in variable name Detlev Zundel
2008-06-22 17:09 ` Jerry Van Baren
2008-06-30 14:03 ` Detlev Zundel
2008-07-01 2:17 ` Jerry Van Baren
2008-07-05 22:32 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox