On Thu, 2014-06-19 at 21:20 +0200, Johannes Stadlinger wrote:
> This patch fixes all warning of checkpatch about lines over 80
> characters.

trivia:

> diff --git a/drivers/staging/wlan-ng/prism2sta.c 
> b/drivers/staging/wlan-ng/prism2sta.c
[]
> @@ -1271,7 +1275,8 @@ void prism2sta_processing_defer(struct work_struct 
> *data)
>                                    HFA384x_RID_CURRENTSSID, result);
>                               return;
>                       }
> -                     prism2mgmt_bytestr2pstr((struct hfa384x_bytestr *) 
> &ssid,
> +                     prism2mgmt_bytestr2pstr((struct hfa384x_bytestr *)
> +                                                                     &ssid,
>                                               (p80211pstrd_t *) &
>                                               wlandev->ssid);

I don't find this better or easier to read.

Sometimes it's easier to read to cast to a
void * instead of the specific type

                        prism2mgmt_bytestr2pstr((void *)&ssid,
                                                (void *)&wlandev->ssid);

 



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to