public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot]  i2c pull request (next)
@ 2010-03-15 11:23 Heiko Schocher
  2010-03-20 22:46 ` Wolfgang Denk
  2010-03-29 11:36 ` Heiko Schocher
  0 siblings, 2 replies; 5+ messages in thread
From: Heiko Schocher @ 2010-03-15 11:23 UTC (permalink / raw)
  To: u-boot

Hello Wolfgang,

please pull for next branch the following changes for i2c:

The following changes since commit a143441472e1e422b0ff36ec4c99e36dd0f0358b:
  Detlev Zundel (1):
        mpc5xxx: Remove all references to MGT5100

are available in the git repository at:

  git://git.denx.de/u-boot-i2c.git next

Frans Meulenbroeks (5):
      cmd_i2c.c: reduced subaddress length to 3 bytes
      cmd_bootm.c: made subcommand array static
      cmd_i2c.c: reworked subcommand handling
      cmd_i2c.c: sorted commands alphabetically
      cmd_i2c.c: added i2c read to memory function

 common/cmd_bootm.c |    2 +-
 common/cmd_i2c.c   |  158 +++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 115 insertions(+), 45 deletions(-)

bye
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] i2c pull request (next)
  2010-03-15 11:23 [U-Boot] i2c pull request (next) Heiko Schocher
@ 2010-03-20 22:46 ` Wolfgang Denk
  2010-03-29 11:36 ` Heiko Schocher
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2010-03-20 22:46 UTC (permalink / raw)
  To: u-boot

Dear Heiko Schocher,

In message <4B9E18BC.5090506@denx.de> you wrote:
> Hello Wolfgang,
> 
> please pull for next branch the following changes for i2c:
> 
> The following changes since commit a143441472e1e422b0ff36ec4c99e36dd0f0358b:
>   Detlev Zundel (1):
>         mpc5xxx: Remove all references to MGT5100
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-i2c.git next
> 
> Frans Meulenbroeks (5):
>       cmd_i2c.c: reduced subaddress length to 3 bytes
>       cmd_bootm.c: made subcommand array static
>       cmd_i2c.c: reworked subcommand handling
>       cmd_i2c.c: sorted commands alphabetically
>       cmd_i2c.c: added i2c read to memory function
> 
>  common/cmd_bootm.c |    2 +-
>  common/cmd_i2c.c   |  158 +++++++++++++++++++++++++++++++++++++--------------
>  2 files changed, 115 insertions(+), 45 deletions(-)

Applied to "next", 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
"We don't care.  We don't have to.  We're the Phone Company."

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot]  i2c pull request (next)
  2010-03-15 11:23 [U-Boot] i2c pull request (next) Heiko Schocher
  2010-03-20 22:46 ` Wolfgang Denk
@ 2010-03-29 11:36 ` Heiko Schocher
  2010-03-29 12:36   ` Wolfgang Denk
  2010-03-29 12:41   ` Frans Meulenbroeks
  1 sibling, 2 replies; 5+ messages in thread
From: Heiko Schocher @ 2010-03-29 11:36 UTC (permalink / raw)
  To: u-boot

Hello Wolfgang,

please pull for next branch the following changes for i2c:

The following changes since commit 0020db3f0da61f3e2c8a459a87598e07594dc8ac:
  Wolfgang Denk (1):
        Merge remote branch 'origin/master' into next

are available in the git repository at:

  git://git.denx.de/u-boot-i2c.git next

Frans Meulenbroeks (5):
      cmd_i2c.c: declared local functions as static
      cmd_i2c: moved mispositioned comment for i2c md
      cmd_i2c: moved a define to before the functions
      cmd_i2c: introduced get_alen helper function
      i2c: made unused function i2c_mux_add_device static

 common/cmd_i2c.c |  155 +++++++++++++++++++++++-------------------------------
 include/i2c.h    |    2 -
 2 files changed, 65 insertions(+), 92 deletions(-)

Frans:

Patch 4 "cmd_i2c: introduced get_alen helper function" applied
after fixing a whitespace error:

Applying: cmd_i2c: introduced get_alen helper function
/home/hs/i2c/u-boot-i2c/.git/rebase-apply/patch:14: trailing whitespace.
 * returns the address length,or 0 on error
warning: 1 line applied after fixing whitespace errors.

Patch 5: corrected the commit message

Hope this is OK for you?

bye,
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] i2c pull request (next)
  2010-03-29 11:36 ` Heiko Schocher
@ 2010-03-29 12:36   ` Wolfgang Denk
  2010-03-29 12:41   ` Frans Meulenbroeks
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2010-03-29 12:36 UTC (permalink / raw)
  To: u-boot

Dear Heiko Schocher,

In message <4BB090C0.4060800@denx.de> you wrote:
> Hello Wolfgang,
> 
> please pull for next branch the following changes for i2c:
> 
> The following changes since commit 0020db3f0da61f3e2c8a459a87598e07594dc8ac:
>   Wolfgang Denk (1):
>         Merge remote branch 'origin/master' into next
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-i2c.git next
> 
> Frans Meulenbroeks (5):
>       cmd_i2c.c: declared local functions as static
>       cmd_i2c: moved mispositioned comment for i2c md
>       cmd_i2c: moved a define to before the functions
>       cmd_i2c: introduced get_alen helper function
>       i2c: made unused function i2c_mux_add_device static
> 
>  common/cmd_i2c.c |  155 +++++++++++++++++++++++-------------------------------
>  include/i2c.h    |    2 -
>  2 files changed, 65 insertions(+), 92 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
There is a multi-legged creature crawling on your shoulder.
	-- Spock, "A Taste of Armageddon", stardate 3193.9

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] i2c pull request (next)
  2010-03-29 11:36 ` Heiko Schocher
  2010-03-29 12:36   ` Wolfgang Denk
@ 2010-03-29 12:41   ` Frans Meulenbroeks
  1 sibling, 0 replies; 5+ messages in thread
From: Frans Meulenbroeks @ 2010-03-29 12:41 UTC (permalink / raw)
  To: u-boot

2010/3/29 Heiko Schocher <hs@denx.de>:
> Hello Wolfgang,
>
> please pull for next branch the following changes for i2c:
>
> The following changes since commit 0020db3f0da61f3e2c8a459a87598e07594dc8ac:
> ?Wolfgang Denk (1):
> ? ? ? ?Merge remote branch 'origin/master' into next
>
> are available in the git repository at:
>
> ?git://git.denx.de/u-boot-i2c.git next
>
> Frans Meulenbroeks (5):
> ? ? ?cmd_i2c.c: declared local functions as static
> ? ? ?cmd_i2c: moved mispositioned comment for i2c md
> ? ? ?cmd_i2c: moved a define to before the functions
> ? ? ?cmd_i2c: introduced get_alen helper function
> ? ? ?i2c: made unused function i2c_mux_add_device static
>
> ?common/cmd_i2c.c | ?155 +++++++++++++++++++++++-------------------------------
> ?include/i2c.h ? ?| ? ?2 -
> ?2 files changed, 65 insertions(+), 92 deletions(-)
>
> Frans:
>
> Patch 4 "cmd_i2c: introduced get_alen helper function" applied
> after fixing a whitespace error:
>
> Applying: cmd_i2c: introduced get_alen helper function
> /home/hs/i2c/u-boot-i2c/.git/rebase-apply/patch:14: trailing whitespace.
> ?* returns the address length,or 0 on error
> warning: 1 line applied after fixing whitespace errors.
>
> Patch 5: corrected the commit message
>
> Hope this is OK for you?

Yes!

Apologies that a last minute edit added a whitespace error in the comment.
Note to self: recheck even after making a small change.

Frans

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-03-29 12:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-15 11:23 [U-Boot] i2c pull request (next) Heiko Schocher
2010-03-20 22:46 ` Wolfgang Denk
2010-03-29 11:36 ` Heiko Schocher
2010-03-29 12:36   ` Wolfgang Denk
2010-03-29 12:41   ` Frans Meulenbroeks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox