linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mac80211-next: remove duplicated include from virt_wifi.c
@ 2018-12-20  2:51 YueHaibing
  2019-01-16 12:24 ` YueHaibing
  2019-01-17  3:13 ` [PATCH v2] virt_wifi: " YueHaibing
  0 siblings, 2 replies; 5+ messages in thread
From: YueHaibing @ 2018-12-20  2:51 UTC (permalink / raw)
  To: Kalle Valo; +Cc: YueHaibing, linux-wireless, netdev, kernel-janitors

Remove duplicated include.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/net/wireless/virt_wifi.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/net/wireless/virt_wifi.c b/drivers/net/wireless/virt_wifi.c
index 64b2186..245d4d0 100644
--- a/drivers/net/wireless/virt_wifi.c
+++ b/drivers/net/wireless/virt_wifi.c
@@ -14,11 +14,6 @@
 #include <linux/etherdevice.h>
 #include <linux/module.h>
 
-#include <net/cfg80211.h>
-#include <net/rtnetlink.h>
-#include <linux/etherdevice.h>
-#include <linux/module.h>
-
 static struct wiphy *common_wiphy;
 
 struct virt_wifi_wiphy_priv {




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] mac80211-next: remove duplicated include from virt_wifi.c
  2018-12-20  2:51 [PATCH] mac80211-next: remove duplicated include from virt_wifi.c YueHaibing
@ 2019-01-16 12:24 ` YueHaibing
  2019-01-16 16:09   ` Kalle Valo
  2019-01-17  3:13 ` [PATCH v2] virt_wifi: " YueHaibing
  1 sibling, 1 reply; 5+ messages in thread
From: YueHaibing @ 2019-01-16 12:24 UTC (permalink / raw)
  To: Kalle Valo; +Cc: linux-wireless, netdev, kernel-janitors

ping...

On 2018/12/20 10:51, YueHaibing wrote:
> Remove duplicated include.
> 
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> ---
>  drivers/net/wireless/virt_wifi.c | 5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/drivers/net/wireless/virt_wifi.c b/drivers/net/wireless/virt_wifi.c
> index 64b2186..245d4d0 100644
> --- a/drivers/net/wireless/virt_wifi.c
> +++ b/drivers/net/wireless/virt_wifi.c
> @@ -14,11 +14,6 @@
>  #include <linux/etherdevice.h>
>  #include <linux/module.h>
>  
> -#include <net/cfg80211.h>
> -#include <net/rtnetlink.h>
> -#include <linux/etherdevice.h>
> -#include <linux/module.h>
> -
>  static struct wiphy *common_wiphy;
>  
>  struct virt_wifi_wiphy_priv {
> 
> 
> 
> 
> .
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mac80211-next: remove duplicated include from virt_wifi.c
  2019-01-16 12:24 ` YueHaibing
@ 2019-01-16 16:09   ` Kalle Valo
  2019-01-17  2:41     ` YueHaibing
  0 siblings, 1 reply; 5+ messages in thread
From: Kalle Valo @ 2019-01-16 16:09 UTC (permalink / raw)
  To: YueHaibing; +Cc: linux-wireless, netdev, kernel-janitors

YueHaibing <yuehaibing@huawei.com> writes:

> ping...
>
> On 2018/12/20 10:51, YueHaibing wrote:
>> Remove duplicated include.
>> 
>> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
>> ---
>>  drivers/net/wireless/virt_wifi.c | 5 -----
>>  1 file changed, 5 deletions(-)

BTW, the prefix should be "virt_wifi:".

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mac80211-next: remove duplicated include from virt_wifi.c
  2019-01-16 16:09   ` Kalle Valo
@ 2019-01-17  2:41     ` YueHaibing
  0 siblings, 0 replies; 5+ messages in thread
From: YueHaibing @ 2019-01-17  2:41 UTC (permalink / raw)
  To: Kalle Valo; +Cc: linux-wireless, netdev, kernel-janitors


On 2019/1/17 0:09, Kalle Valo wrote:
> YueHaibing <yuehaibing@huawei.com> writes:
> 
>> ping...
>>
>> On 2018/12/20 10:51, YueHaibing wrote:
>>> Remove duplicated include.
>>>
>>> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
>>> ---
>>>  drivers/net/wireless/virt_wifi.c | 5 -----
>>>  1 file changed, 5 deletions(-)
> 
> BTW, the prefix should be "virt_wifi:".

Thanks ,will fix it in v2
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2] virt_wifi: remove duplicated include from virt_wifi.c
  2018-12-20  2:51 [PATCH] mac80211-next: remove duplicated include from virt_wifi.c YueHaibing
  2019-01-16 12:24 ` YueHaibing
@ 2019-01-17  3:13 ` YueHaibing
  1 sibling, 0 replies; 5+ messages in thread
From: YueHaibing @ 2019-01-17  3:13 UTC (permalink / raw)
  To: Kalle Valo; +Cc: YueHaibing, linux-wireless, netdev, kernel-janitors

Remove duplicated include.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
v2: fix prefix to 'virt_wifi:'
---
 drivers/net/wireless/virt_wifi.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/net/wireless/virt_wifi.c b/drivers/net/wireless/virt_wifi.c
index 64b2186..245d4d0 100644
--- a/drivers/net/wireless/virt_wifi.c
+++ b/drivers/net/wireless/virt_wifi.c
@@ -14,11 +14,6 @@
 #include <linux/etherdevice.h>
 #include <linux/module.h>
 
-#include <net/cfg80211.h>
-#include <net/rtnetlink.h>
-#include <linux/etherdevice.h>
-#include <linux/module.h>
-
 static struct wiphy *common_wiphy;
 
 struct virt_wifi_wiphy_priv {




^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-01-17  3:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-20  2:51 [PATCH] mac80211-next: remove duplicated include from virt_wifi.c YueHaibing
2019-01-16 12:24 ` YueHaibing
2019-01-16 16:09   ` Kalle Valo
2019-01-17  2:41     ` YueHaibing
2019-01-17  3:13 ` [PATCH v2] virt_wifi: " YueHaibing

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).