Prev: drivers/pci/hotplug: Use kmemdup
Next: [PATCH] fs: remove all rcu head initializations, except on_stack initializations
From: Greg KH on 18 May 2010 18:10 On Mon, May 17, 2010 at 12:44:26PM +0100, Neil Munro wrote: > From: Neil Munro <neilmunro(a)gmail.com> > > Fixed all but error in mlme.h, I don't know how to fix the remaining > error. It complains about parenthesis and do-while loops, maybe someone > else can fix that? > > Signed-off-by: Neil Munro <neilmunro(a)gmail.com> > Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> > --- > drivers/staging/rt2860/mlme.h | 13 ++++++------- > 1 files changed, 6 insertions(+), 7 deletions(-) > > diff --git a/drivers/staging/rt2860/mlme.h b/drivers/staging/rt2860/mlme.h > index 1143413..63cada3 100644 > --- a/drivers/staging/rt2860/mlme.h > +++ b/drivers/staging/rt2860/mlme.h > @@ -60,7 +60,7 @@ > #define JAP_W56 4 > #define MAX_RD_REGION 5 > > -#define BEACON_LOST_TIME 4 * OS_HZ /* 2048 msec = 2 sec */ > +#define BEACON_LOST_TIME { 4 * OS_HZ } /* 2048 msec = 2 sec */ This is not correct, you need to use ( ) here. And you can ignore the checkconfig error about the do-while loop here, that's a bug in the script. Care to redo this patch? thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |