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);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to