Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1636004 > unrolled thread

[PATCH] Staging: rtl8192u: ieee80211: ieee80211_module.c: fix style issue

Started byRiccardo <riccardo.marotti@gmail.com>
First post2017-05-04 22:10 +0200
Last post2017-05-08 00:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] Staging: rtl8192u: ieee80211: ieee80211_module.c: fix style issue Riccardo <riccardo.marotti@gmail.com> - 2017-05-04 22:10 +0200
    Re: [PATCH] Staging: rtl8192u: ieee80211: ieee80211_module.c: fix  style issue Riccardo Marotti <riccardo.marotti@gmail.com> - 2017-05-08 00:40 +0200

#1636004 — [PATCH] Staging: rtl8192u: ieee80211: ieee80211_module.c: fix style issue

FromRiccardo <riccardo.marotti@gmail.com>
Date2017-05-04 22:10 +0200
Subject[PATCH] Staging: rtl8192u: ieee80211: ieee80211_module.c: fix style issue
Message-ID<tDvex-8iS-7@gated-at.bofh.it>
Fixed a brace coding style issue, found via checkpatch.

Signed-off-by: Riccardo Marotti <riccardo.marotti@gmail.com>
---
 drivers/staging/rtl8192u/ieee80211/ieee80211_module.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c
index a791175b86f5..8f236b332a47 100644
--- a/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c
+++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c
@@ -157,8 +157,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv)
 	ieee80211_softmac_init(ieee);
 
 	ieee->pHTInfo = kzalloc(sizeof(RT_HIGH_THROUGHPUT), GFP_KERNEL);
-	if (ieee->pHTInfo == NULL)
-	{
+	if (ieee->pHTInfo == NULL) {
 		IEEE80211_DEBUG(IEEE80211_DL_ERR, "can't alloc memory for HTInfo\n");
 		goto failed;
 	}
-- 
2.12.2

[toc] | [next] | [standalone]


#1637121 — Re: [PATCH] Staging: rtl8192u: ieee80211: ieee80211_module.c: fix style issue

FromRiccardo Marotti <riccardo.marotti@gmail.com>
Date2017-05-08 00:40 +0200
SubjectRe: [PATCH] Staging: rtl8192u: ieee80211: ieee80211_module.c: fix style issue
Message-ID<tED0m-3AS-13@gated-at.bofh.it>
In reply to#1636004
On Sun, May 7, 2017 at 5:14 AM, Greg KH <gregkh@linuxfoundation.org> wrote:
> On Thu, May 04, 2017 at 10:06:51PM +0200, Riccardo wrote:
>> Fixed a brace coding style issue, found via checkpatch.
>>
>> Signed-off-by: Riccardo Marotti <riccardo.marotti@gmail.com>
>
> This name doesn't match the name on the From: line of your email :(
>

Sorry about that!
I'll re-send the patch with the correct name.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web