From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yoshinori Sato Date: Fri, 01 Aug 2008 15:32:28 +0000 Subject: Re: [PATCH] sh_eth Add SH7619 support Message-Id: <871w18ycmr.wl%ysato@users.sourceforge.jp> List-Id: References: <878wvhtynu.wl%ysato@users.sourceforge.jp> <29ab51dc0807312048hfa9cd88pb90d1a7520bb3f99@mail.gmail.com> In-Reply-To: <29ab51dc0807312048hfa9cd88pb90d1a7520bb3f99@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Nobuhiro Iwamatsu Cc: Jeff Garzik , Nobuhiro Iwamatsu , netdev@vger.kernel.org, linux-sh@vger.kernel.org At Fri, 1 Aug 2008 12:48:27 +0900, Nobuhiro Iwamatsu wrote: > > Hi, Sato-san. > > 2008/8/1 Yoshinori Sato : > > SH7619 have same SH7710 ethernet controler. > > Add support for sh_eth driver. > > > > Signed-off-by: Yoshinori Sato > > > > > > > > > diff --git a/drivers/net/sh_eth.h b/drivers/net/sh_eth.h > > index 45ad1b0..ca3cc5f 100644 > > --- a/drivers/net/sh_eth.h > > +++ b/drivers/net/sh_eth.h > > @@ -143,10 +143,11 @@ > > > > > > > + > > +/* CPU endian from/to EDMAC endian */ > > +#if !defined(CONFIG_CPU_SUBTYPE_SH7619) > > +#define cpu_to_edmac(x) cpu_to_le32(x) > > +#define edmac_to_cpu(x) le32_to_cpu(x) > > +#else > > +#define cpu_to_edmac(x) cpu_to_be32(x) > > +#define edmac_to_cpu(x) be32_to_cpu(x) > > +#endif > > + > > #endif > I think that this depends on an endian not CPU dependence. I agree. But I'm no idea. Are you have good idea? > Best regards, > Nobuhiro