From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Buesch Subject: Re: [PATCH #2] Merge the Sonics Silicon Backplane subsystem Date: Sat, 14 Jul 2007 19:47:45 +0200 Message-ID: <200707141947.46191.mb@bu3sch.de> References: <200707141918.22457.mb@bu3sch.de> <20070714172605.GA15586@infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Cc: Andrew Morton , John Linville , Aurelien Jarno , linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Gary Zambrano , netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Christoph Hellwig Return-path: In-Reply-To: <20070714172605.GA15586-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org> Content-Disposition: inline Sender: linux-wireless-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: netdev.vger.kernel.org On Saturday 14 July 2007 19:26:05 Christoph Hellwig wrote: > On Sat, Jul 14, 2007 at 07:18:20PM +0200, Michael Buesch wrote: > > --- /dev/null > > +++ b/drivers/ssb/Makefile > > @@ -0,0 +1,11 @@ > > +ssb-builtin-drivers-y += driver_chipcommon.o > > +ssb-builtin-drivers-$(CONFIG_SSB_DRIVER_MIPS) += driver_mipscore.o > > +ssb-builtin-drivers-$(CONFIG_SSB_DRIVER_PCICORE) += driver_pcicore.o > > + > > +ssb-hostsupport-$(CONFIG_SSB_PCIHOST) += pci.o pcihost_wrapper.o > > +ssb-hostsupport-$(CONFIG_SSB_PCMCIAHOST) += pcmcia.o > > + > > +obj-$(CONFIG_SSB) += ssb.o > > + > > +ssb-objs := main.o scan.o \ > > + $(ssb-hostsupport-y) $(ssb-builtin-drivers-y) > > Whoa, this makefile is more than ugly :) > > Please try something like: > > # core > ssb-y += main.o scan.o > > # host support > ssb-$(CONFIG_SSB_PCIHOST) += pci.o pcihost_wrapper.o > ssb-$(CONFIG_SSB_PCMCIAHOST) += pcmcia.o > > # drivers > ssb-y += driver_chipcommon.o > ssb-$(CONFIG_SSB_DRIVER_MIPS) += driver_mipscore.o > ssb-$(CONFIG_SSB_DRIVER_PCICORE) += driver_pcicore.o > > obj-$(CONFIG_SSB) += ssb.o > > instead > > > > + default y > > please don't add defauly y statements for random drivers. > Thanks for your comments. I fixed that and will submit it with the next round. -- Greetings Michael.