Re: [PATCH] Staging:wilc1000:host_interface: fixed 80 character line limit coding style issue

From: Dan Carpenter
Date: Mon Oct 24 2016 - 06:59:09 EST


On Fri, Oct 21, 2016 at 06:59:39PM +0530, Nadim Almas wrote:
> Fixed coding style issue
>
> Signed-off-by: Nadim Almas <nadim.902@xxxxxxxxx>
> ---
> drivers/staging/wilc1000/host_interface.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
> index 0c5dea7..6e6540f 100644
> --- a/drivers/staging/wilc1000/host_interface.c
> +++ b/drivers/staging/wilc1000/host_interface.c
> @@ -497,10 +497,12 @@ static void handle_cfg_param(struct wilc_vif *vif,
> if (cfg_param_attr->flag & POWER_MANAGEMENT) {
> if (cfg_param_attr->power_mgmt_mode < 5) {
> wid_list[i].id = WID_POWER_MANAGEMENT;
> - wid_list[i].val = (s8 *)&cfg_param_attr->power_mgmt_mode;
> + wid_list[i].val = (s8 *)&cfg_param_attr->
> + power_mgmt_mode;

The original was easier to read.

regards,
dan carpenter