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-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html