Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752785Ab3JESFX (ORCPT ); Sat, 5 Oct 2013 14:05:23 -0400 Received: from smtprelay0149.hostedemail.com ([216.40.44.149]:52080 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752269Ab3JESFV (ORCPT ); Sat, 5 Oct 2013 14:05:21 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::,RULES_HIT:41:355:379:541:599:988:989:1260:1261:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1539:1593:1594:1711:1730:1747:1777:1792:2393:2559:2562:2828:3138:3139:3140:3141:3142:3352:3622:3867:4321:5007:6642:7652:7875:10004:10400:10848:11026:11232:11473:11658:11914:12296:12517:12519:12740:13069:13311:13357,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: fuel76_2e93d78c5274d X-Filterd-Recvd-Size: 1591 Message-ID: <1380996319.2081.126.camel@joe-AO722> Subject: Re: [PATCH 2/5] drivers: usb: core: hcd: Whitespace fixes From: Joe Perches To: Matthias Beyer Cc: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Date: Sat, 05 Oct 2013 11:05:19 -0700 In-Reply-To: <1380996244.2081.125.camel@joe-AO722> References: <1380996244.2081.125.camel@joe-AO722> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.6.4-0ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 888 Lines: 26 On Sat, 2013-10-05 at 11:04 -0700, Joe Perches wrote: > On Sat, 2013-10-05 at 18:02 +0200, Matthias Beyer wrote: > > - removing spaces before array indexing (foo [] to foo[]) > [] > > diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c > [] > > @@ -93,7 +93,7 @@ EXPORT_SYMBOL_GPL (usb_bus_list); > > /* used when allocating bus numbers */ > > #define USB_MAXBUS 64 > > struct usb_busmap { > > - unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))]; > > + unsigned long busmap[USB_MAXBUS / (8*sizeof (unsigned long))]; > > this would be nicer as > > DEFINE_BITMAP(busmap, USB_MAXBUS); > nack, DECLARE_BITMAP(...) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/