[PATCH 14/15] staging: unisys: fix alignment in visornic_main.c

Dan Carpenter dan.carpenter at oracle.com
Wed Dec 2 13:21:59 UTC 2015


On Mon, Nov 30, 2015 at 02:46:14PM -0500, Benjamin Romer wrote:
> @@ -1651,7 +1651,7 @@ service_resp_queue(struct uiscmdrsp *cmdrsp, struct visornic_devdata *devdata,
>  				 * netif_wake_queue()
>  				 */
>  				if (vnic_hit_low_watermark(devdata,
> -					devdata->lower_threshold_net_xmits)) {
> +				    devdata->lower_threshold_net_xmits)) {

The original was best.  It is suggesting:

				if (vnic_hit_low_watermark(devdata,
							   devdata->lower_threshold_net_xmits)) {

But that is over 80 chars.

regards,
dan carpenter



More information about the devel mailing list