From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755674Ab0IUDyo (ORCPT ); Mon, 20 Sep 2010 23:54:44 -0400 Received: from kroah.org ([198.145.64.141]:46275 "EHLO coco.kroah.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755545Ab0IUDyn (ORCPT ); Mon, 20 Sep 2010 23:54:43 -0400 Date: Mon, 20 Sep 2010 20:54:35 -0700 From: Greg KH To: Nohee Ko Cc: "gregkh@suse.de" , "linux-kernel@vger.kernel.org" , Roman Baker , David Milne , Venkat Rao , Howard Harte , Brett Rudley , Henry Ptasinski Subject: Re: [PATCH] staging: brcm80211: add fullmac driver Message-ID: <20100921035435.GA31538@kroah.com> References: <1284736810-2940-1-git-send-email-tim.gardner@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 20, 2010 at 07:43:22PM -0700, Nohee Ko wrote: > This patch to the existing bcm80211 directory in the staging tree adds fullmac driver support for the BCM4329 SDIO chip from Broadcom. Configuration of the mac80211 driver or the fullmac driver can be done through menuconfig. Please wrap your lines at 72 columns. Your patch does not apply to the latest linux-next tree. Your patch is also mime-encoded which probably doesn't help things. Care to fix this up and resend it so I can apply it? > --- a/drivers/staging/brcm80211/util/siutils.c > +++ b/drivers/staging/brcm80211/util/siutils.c > @@ -59,12 +59,16 @@ static bool si_buscore_prep(si_info_t *sii, uint bustype, uint devid, > void *sdh); > static bool si_buscore_setup(si_info_t *sii, chipcregs_t *cc, uint bustype, > uint32 savewin, uint *origidx, void *regs); > +#ifndef BRCM_FULLMAC > static void si_nvram_process(si_info_t *sii, char *pvars); > +#endif > > /* dev path concatenation util */ > +#ifndef BRCM_FULLMAC Why all the #ifdef mess added to the siutils.c file? Is it really needed? Why not just leave it alone and have the functions always build. thanks, greg k-h