public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name
@ 2009-11-11  8:03 Mike Rapoport
  2009-11-15  6:56 ` Mike Rapoport
  2009-12-07 21:04 ` Wolfgang Denk
  0 siblings, 2 replies; 4+ messages in thread
From: Mike Rapoport @ 2009-11-11  8:03 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Mike Rapoport <mike@compulab.co.il>
---
 drivers/net/smc911x.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c
index c50758e..acc2306 100644
--- a/drivers/net/smc911x.c
+++ b/drivers/net/smc911x.c
@@ -37,7 +37,7 @@ void pkt_data_push(struct eth_device *dev, u32 addr, u32 val) \
 
 #define mdelay(n)       udelay((n)*1000)
 
-static void smx911x_handle_mac_address(struct eth_device *dev)
+static void smc911x_handle_mac_address(struct eth_device *dev)
 {
 	unsigned long addrh, addrl;
 	uchar *m = dev->enetaddr;
@@ -155,7 +155,7 @@ static int smc911x_init(struct eth_device *dev, bd_t * bd)
 	/* Configure the PHY, initialize the link state */
 	smc911x_phy_configure(dev);
 
-	smx911x_handle_mac_address(dev);
+	smc911x_handle_mac_address(dev);
 
 	/* Turn on Tx + Rx */
 	smc911x_enable(dev);
-- 
1.6.0.6

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

* [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name
  2009-11-11  8:03 [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name Mike Rapoport
@ 2009-11-15  6:56 ` Mike Rapoport
  2009-11-15 15:24   ` Ben Warren
  2009-12-07 21:04 ` Wolfgang Denk
  1 sibling, 1 reply; 4+ messages in thread
From: Mike Rapoport @ 2009-11-15  6:56 UTC (permalink / raw)
  To: u-boot

Ben,
Any chance this one can be merged as well?

Mike Rapoport wrote:
> Signed-off-by: Mike Rapoport <mike@compulab.co.il>
> ---
>  drivers/net/smc911x.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c
> index c50758e..acc2306 100644
> --- a/drivers/net/smc911x.c
> +++ b/drivers/net/smc911x.c
> @@ -37,7 +37,7 @@ void pkt_data_push(struct eth_device *dev, u32 addr, u32 val) \
>  
>  #define mdelay(n)       udelay((n)*1000)
>  
> -static void smx911x_handle_mac_address(struct eth_device *dev)
> +static void smc911x_handle_mac_address(struct eth_device *dev)
>  {
>  	unsigned long addrh, addrl;
>  	uchar *m = dev->enetaddr;
> @@ -155,7 +155,7 @@ static int smc911x_init(struct eth_device *dev, bd_t * bd)
>  	/* Configure the PHY, initialize the link state */
>  	smc911x_phy_configure(dev);
>  
> -	smx911x_handle_mac_address(dev);
> +	smc911x_handle_mac_address(dev);
>  
>  	/* Turn on Tx + Rx */
>  	smc911x_enable(dev);

-- 
Sincerely yours,
Mike.

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

* [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name
  2009-11-15  6:56 ` Mike Rapoport
@ 2009-11-15 15:24   ` Ben Warren
  0 siblings, 0 replies; 4+ messages in thread
From: Ben Warren @ 2009-11-15 15:24 UTC (permalink / raw)
  To: u-boot

Hi Mike,

On Sat, Nov 14, 2009 at 10:56 PM, Mike Rapoport <mike@compulab.co.il> wrote:

> Ben,
> Any chance this one can be merged as well?
>
> Mike Rapoport wrote:
> > Signed-off-by: Mike Rapoport <mike@compulab.co.il>
> > ---
> >  drivers/net/smc911x.c |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c
> > index c50758e..acc2306 100644
> > --- a/drivers/net/smc911x.c
> > +++ b/drivers/net/smc911x.c
> > @@ -37,7 +37,7 @@ void pkt_data_push(struct eth_device *dev, u32 addr,
> u32 val) \
> >
> >  #define mdelay(n)       udelay((n)*1000)
> >
> > -static void smx911x_handle_mac_address(struct eth_device *dev)
> > +static void smc911x_handle_mac_address(struct eth_device *dev)
> >  {
> >       unsigned long addrh, addrl;
> >       uchar *m = dev->enetaddr;
> > @@ -155,7 +155,7 @@ static int smc911x_init(struct eth_device *dev, bd_t
> * bd)
> >       /* Configure the PHY, initialize the link state */
> >       smc911x_phy_configure(dev);
> >
> > -     smx911x_handle_mac_address(dev);
> > +     smc911x_handle_mac_address(dev);
> >
> >       /* Turn on Tx + Rx */
> >       smc911x_enable(dev);
>
> Sure, but since it's not fixing something broken (unless I'm missing
something), it will wait until the next release.  I'll pull it into 'next'
soon.

> --
> Sincerely yours,
> Mike.
>
> regards,
Ben

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

* [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name
  2009-11-11  8:03 [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name Mike Rapoport
  2009-11-15  6:56 ` Mike Rapoport
@ 2009-12-07 21:04 ` Wolfgang Denk
  1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2009-12-07 21:04 UTC (permalink / raw)
  To: u-boot

Dear Mike Rapoport,

In message <1257926592-14782-1-git-send-email-mike@compulab.co.il> you wrote:
> Signed-off-by: Mike Rapoport <mike@compulab.co.il>
> ---
>  drivers/net/smc911x.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

Ben, this looked so obvious, too. Hope it is OK with you.

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
Always borrow money from a pessimist; they don't expect  to  be  paid
back.

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

end of thread, other threads:[~2009-12-07 21:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-11  8:03 [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name Mike Rapoport
2009-11-15  6:56 ` Mike Rapoport
2009-11-15 15:24   ` Ben Warren
2009-12-07 21:04 ` Wolfgang Denk

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