Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1663134
| From | Jaya Durga <jayad@cdac.in> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 10/10] Staging: rtl8712: ieee80211: fixed coding style issue |
| Date | 2017-06-11 20:50 +0200 |
| Message-ID | <tRg5X-8vh-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Fixed WARNING: line over 80 characters Signed-off-by: Jaya Durga <jayad@cdac.in> --- drivers/staging/rtl8712/ieee80211.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8712/ieee80211.c b/drivers/staging/rtl8712/ieee80211.c index 6e673c1..97ef063 100644 --- a/drivers/staging/rtl8712/ieee80211.c +++ b/drivers/staging/rtl8712/ieee80211.c @@ -174,8 +174,8 @@ int r8712_generate_ie(struct registry_priv *pregistrypriv) sz += 8; ie += sz; /*beacon interval : 2bytes*/ - *(__le16 *)ie = cpu_to_le16( - (u16)pdev_network->configuration.beacon_period); + struct NDIS_802_11_CONFIGURATION *cfg = &pdev_network->configuration; + *(__le16 *)ie = cpu_to_le16(cfg->beacon_period); sz += 2; ie += 2; /*capability info*/ -- 1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 10/10] Staging: rtl8712: ieee80211: fixed coding style issue Jaya Durga <jayad@cdac.in> - 2017-06-11 20:50 +0200
Re: [PATCH 10/10] Staging: rtl8712: ieee80211: fixed coding style issue Dan Carpenter <dan.carpenter@oracle.com> - 2017-06-12 14:20 +0200
Re: [PATCH 10/10] Staging: rtl8712: ieee80211: fixed coding style issue Greg KH <gregkh@linuxfoundation.org> - 2017-06-13 08:00 +0200
Re: [PATCH 10/10] Staging: rtl8712: ieee80211: fixed coding style issue R Jayadurga <jayad@cdac.in> - 2017-06-13 09:00 +0200
Re: [10/10] Staging: rtl8712: ieee80211: fixed coding style issue Guenter Roeck <linux@roeck-us.net> - 2017-06-12 23:00 +0200
csiph-web