[PATCH 5/5] drivers: staging: rtl8192u: fixed coding style issues in r8192U_core.c

Joe Perches joe at perches.com
Sat Jul 18 00:15:45 UTC 2015


On Fri, 2015-07-17 at 15:59 +0200, Joseph-Eugene Winzer wrote:
> Fixed a few lines that were longer than 80 chars.
[]
> diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c
[]
> @@ -212,7 +212,9 @@ static void rtl819x_set_channel_map(u8 channel_plan, struct r8192_priv *priv)
>  				    ChannelPlan[channel_plan].Channel[i] >
>  								max_chan)
>  					break;
> -				GET_DOT11D_INFO(ieee)->channel_map[ChannelPlan[channel_plan].Channel[i]] = 1;
> +				GET_DOT11D_INFO(ieee)->
> +					channel_map[ChannelPlan[channel_plan].
> +						Channel[i]] = 1;

That's _very_ not nice to read.

Try using more temporaries instead.

				index = ChannelPlan[channel_plan].Channel[i];
				GET_DOT11D_INFO(ieee)->channel_map[index] = 1;

etc...



More information about the devel mailing list