From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kumar Gala Subject: Re: [PATCH 02/12] fs_enet: Add MPC5121 FEC support. Date: Thu, 7 May 2009 08:05:02 -0500 Message-ID: <983C93C9-4AA8-421B-B7F8-770E2FD672E1@kernel.crashing.org> References: <1241640919-4650-1-git-send-email-wd@denx.de> <1241640919-4650-3-git-send-email-wd@denx.de> <20090506220119.7322783420E8@gemini.denx.de> Mime-Version: 1.0 (Apple Message framework v930.3) Content-Type: text/plain; charset="us-ascii"; Format="flowed"; DelSp="yes" Content-Transfer-Encoding: 7bit Cc: Piotr Ziecik , John Rigby , netdev@vger.kernel.org, linuxppc-dev@ozlabs.org, Detlev Zundel To: Wolfgang Denk Return-path: In-Reply-To: <20090506220119.7322783420E8@gemini.denx.de> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+glppe-linuxppc-embedded-2=m.gmane.org@ozlabs.org Errors-To: linuxppc-dev-bounces+glppe-linuxppc-embedded-2=m.gmane.org@ozlabs.org List-Id: netdev.vger.kernel.org On May 6, 2009, at 5:01 PM, Wolfgang Denk wrote: > Dear Grant, > > in message > you wrote: >> > ... >>> #ifdef CONFIG_FS_ENET_HAS_FEC >>> +#ifdef CONFIG_FS_ENET_MPC5121_FEC >>> + { >>> + .compatible = "fsl,mpc5121-fec", >>> + .data = (void *)&fs_fec_ops, >>> + }, >>> +#else >>> { >>> .compatible = "fsl,pq1-fec-enet", >>> .data = (void *)&fs_fec_ops, >>> }, >>> #endif >>> +#endif >> >> Hmmm. A lot of these #ifdefs in here. Does this have a >> multiplatform >> impact? Not to mention the fact that it's just plain ugly. :-) > > Agreed that it's ugly, but duplicatio9ng the code would have been even > worse. I don't think that it has multiplatform - at least not as long > as you don't ask for one image that runs on 83xx and on 512x. We do ask for that. The fedora ppc6xx kernel should work on any 6xx/ 7xx/7xxx based core chip. We should NOT be breaking such capability in drivers. - k