On Wed, Mar 19, 2014 at 05:10:34PM +0530, Heena Sirwani wrote: > Fix checkpatch.pl issues with line over 80 characters in Adapter.h > > Signed-off-by: Heena Sirwani <heenasirwani@xxxxxxxxx> > --- > drivers/staging/bcm/Adapter.h | 9 ++++++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h > index a387234..d241164 100644 > --- a/drivers/staging/bcm/Adapter.h > +++ b/drivers/staging/bcm/Adapter.h > @@ -53,8 +53,10 @@ union u_ip_address { > UCHAR ucIpv4Mask[MAX_IP_RANGE_LENGTH * IP_LENGTH_OF_ADDRESS]; > }; > struct { > - UCHAR ucIpv6Address[MAX_IP_RANGE_LENGTH * IPV6_ADDRESS_SIZEINBYTES]; > - UCHAR ucIpv6Mask[MAX_IP_RANGE_LENGTH * IPV6_ADDRESS_SIZEINBYTES]; > + UCHAR ucIpv6Address[MAX_IP_RANGE_LENGTH > + * IPV6_ADDRESS_SIZEINBYTES]; > + UCHAR ucIpv6Mask[MAX_IP_RANGE_LENGTH > + * IPV6_ADDRESS_SIZEINBYTES]; Put the '*' on the first line, otherwise your brain wants to think this is a pointer somehow. thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html