linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] net: wireless: remove leading spaces before tabs
@ 2021-05-19  6:55 Hui Tang
  2021-05-19  6:55 ` [PATCH 1/3] net: libertas: " Hui Tang
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Hui Tang @ 2021-05-19  6:55 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, linux-kernel, tanghui20

There are a few leading spaces before tabs and remove it by running the
following commard:

	$ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/'

Hui Tang (3):
  net: libertas: remove leading spaces before tabs
  rt2x00: remove leading spaces before tabs
  net: ti: remove leading spaces before tabs

 drivers/net/wireless/marvell/libertas/main.c   | 2 +-
 drivers/net/wireless/ralink/rt2x00/rt2800lib.c | 2 +-
 drivers/net/wireless/ti/wlcore/main.c          | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

--
2.8.1


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

* [PATCH 1/3] net: libertas: remove leading spaces before tabs
  2021-05-19  6:55 [PATCH 0/3] net: wireless: remove leading spaces before tabs Hui Tang
@ 2021-05-19  6:55 ` Hui Tang
  2021-06-15 13:16   ` [1/3] " Kalle Valo
  2021-05-19  6:55 ` [PATCH 2/3] rt2x00: " Hui Tang
  2021-05-19  6:55 ` [PATCH 3/3] net: ti: " Hui Tang
  2 siblings, 1 reply; 5+ messages in thread
From: Hui Tang @ 2021-05-19  6:55 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, linux-kernel, tanghui20, Ganapathi Bhat

There are a few leading spaces before tabs and remove it by running the
following commard:

	$ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/'
	$ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/'

Cc: Ganapathi Bhat <ganapathi.bhat@nxp.com>
Signed-off-by: Hui Tang <tanghui20@huawei.com>
---
 drivers/net/wireless/marvell/libertas/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/marvell/libertas/main.c b/drivers/net/wireless/marvell/libertas/main.c
index ee4cf34..64fc5e4 100644
--- a/drivers/net/wireless/marvell/libertas/main.c
+++ b/drivers/net/wireless/marvell/libertas/main.c
@@ -941,7 +941,7 @@ struct lbs_private *lbs_add_card(void *card, struct device *dmdev)
 	wdev->netdev = dev;
 	priv->dev = dev;
 
- 	dev->netdev_ops = &lbs_netdev_ops;
+	dev->netdev_ops = &lbs_netdev_ops;
 	dev->watchdog_timeo = 5 * HZ;
 	dev->ethtool_ops = &lbs_ethtool_ops;
 	dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
-- 
2.8.1


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

* [PATCH 2/3] rt2x00: remove leading spaces before tabs
  2021-05-19  6:55 [PATCH 0/3] net: wireless: remove leading spaces before tabs Hui Tang
  2021-05-19  6:55 ` [PATCH 1/3] net: libertas: " Hui Tang
@ 2021-05-19  6:55 ` Hui Tang
  2021-05-19  6:55 ` [PATCH 3/3] net: ti: " Hui Tang
  2 siblings, 0 replies; 5+ messages in thread
From: Hui Tang @ 2021-05-19  6:55 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, linux-kernel, tanghui20, Stanislaw Gruszka

There are a few leading spaces before tabs and remove it by running the
following commard:

	$ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/'
	$ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/'

Cc: Stanislaw Gruszka <stf_xl@wp.pl>
Signed-off-by: Hui Tang <tanghui20@huawei.com>
---
 drivers/net/wireless/ralink/rt2x00/rt2800lib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ralink/rt2x00/rt2800lib.c b/drivers/net/wireless/ralink/rt2x00/rt2800lib.c
index 5264b0a..deddb0a 100644
--- a/drivers/net/wireless/ralink/rt2x00/rt2800lib.c
+++ b/drivers/net/wireless/ralink/rt2x00/rt2800lib.c
@@ -1037,7 +1037,7 @@ void rt2800_txdone_entry(struct queue_entry *entry, u32 status, __le32 *txwi,
 	 * FIXME: if we do not find matching entry, we tell that frame was
 	 * posted without any retries. We need to find a way to fix that
 	 * and provide retry count.
- 	 */
+	 */
 	if (unlikely((aggr == 1 && ampdu == 0 && real_mcs != mcs)) || !match) {
 		rt2800_rate_from_status(skbdesc, status, rt2x00dev->curr_band);
 		mcs = real_mcs;
-- 
2.8.1


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

* [PATCH 3/3] net: ti: remove leading spaces before tabs
  2021-05-19  6:55 [PATCH 0/3] net: wireless: remove leading spaces before tabs Hui Tang
  2021-05-19  6:55 ` [PATCH 1/3] net: libertas: " Hui Tang
  2021-05-19  6:55 ` [PATCH 2/3] rt2x00: " Hui Tang
@ 2021-05-19  6:55 ` Hui Tang
  2 siblings, 0 replies; 5+ messages in thread
From: Hui Tang @ 2021-05-19  6:55 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, linux-kernel, tanghui20, Tony Lindgren

There are a few leading spaces before tabs and remove it by running the
following commard:

	$ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/'
	$ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/'

Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Hui Tang <tanghui20@huawei.com>
---
 drivers/net/wireless/ti/wlcore/main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
index 8509b98..e500b84 100644
--- a/drivers/net/wireless/ti/wlcore/main.c
+++ b/drivers/net/wireless/ti/wlcore/main.c
@@ -3242,8 +3242,8 @@ static void wl1271_op_configure_filter(struct ieee80211_hw *hw,
 		 * the firmware filters so that all multicast packets are passed
 		 * This is mandatory for MDNS based discovery protocols 
 		 */
- 		if (wlvif->bss_type == BSS_TYPE_AP_BSS) {
- 			if (*total & FIF_ALLMULTI) {
+		if (wlvif->bss_type == BSS_TYPE_AP_BSS) {
+			if (*total & FIF_ALLMULTI) {
 				ret = wl1271_acx_group_address_tbl(wl, wlvif,
 							false,
 							NULL, 0);
-- 
2.8.1


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

* Re: [1/3] libertas: remove leading spaces before tabs
  2021-05-19  6:55 ` [PATCH 1/3] net: libertas: " Hui Tang
@ 2021-06-15 13:16   ` Kalle Valo
  0 siblings, 0 replies; 5+ messages in thread
From: Kalle Valo @ 2021-06-15 13:16 UTC (permalink / raw)
  To: Hui Tang; +Cc: linux-wireless, linux-kernel, tanghui20, Ganapathi Bhat

Hui Tang <tanghui20@huawei.com> wrote:

> There are a few leading spaces before tabs and remove it by running the
> following commard:
> 
> 	$ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/'
> 	$ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/'
> 
> Cc: Ganapathi Bhat <ganapathi.bhat@nxp.com>
> Signed-off-by: Hui Tang <tanghui20@huawei.com>

3 patches applied to wireless-drivers-next.git, thanks.

bd65fe550973 libertas: remove leading spaces before tabs
084eb606dbcf rt2x00: remove leading spaces before tabs
7b7362ba27a2 wlcore: remove leading spaces before tabs

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/1621407345-10625-2-git-send-email-tanghui20@huawei.com/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches


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

end of thread, other threads:[~2021-06-15 13:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-19  6:55 [PATCH 0/3] net: wireless: remove leading spaces before tabs Hui Tang
2021-05-19  6:55 ` [PATCH 1/3] net: libertas: " Hui Tang
2021-06-15 13:16   ` [1/3] " Kalle Valo
2021-05-19  6:55 ` [PATCH 2/3] rt2x00: " Hui Tang
2021-05-19  6:55 ` [PATCH 3/3] net: ti: " Hui Tang

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).