Re: [PATCH, resubmit] ax88179_178a: ASIX AX88179_178A USB 3.0/2.0to gigabit ethernet adapter driver

From: David Miller
Date: Fri Jan 18 2013 - 14:23:04 EST


From: Freddy Xin <freddy@xxxxxxxxxxx>
Date: Thu, 17 Jan 2013 17:32:54 +0800

> +struct ax88179_rx_pkt_header {
> +
> + u8 l4_csum_err:1,

Get rid of such extraneous empty lines. They do not add clarity,
rather they just take up space.

> + ret = fn(dev, cmd, USB_DIR_IN | USB_TYPE_VENDOR |
> + USB_RECIP_DEVICE, value, index, data, size);

This is not indented properly. When a function call takes up
multiple lines, the text on the second and subsequent lines must
be left justified to the first column after the openning parenthesis
of the function call, like this:

function(arg1, arg2,
arg3, arg4);

You must use the appropriate combination of TAB and space characters
to achieve this. If you are trying to only use TAB characters, you
are doing it wrong.

This code has a lot of other similar coding style errors, please
put some effort into fixing them up before you consider resubmitting
this driver.

All of the coding style errors are probably why nobody reviewed your
driver the first time around, there's already enough properly styled
submissions to review.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/