brcm80211.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] wifi: brcmfmac: minor cleanup fixes
@ 2024-01-28  9:30 Arend van Spriel
  2024-01-28  9:30 ` [PATCH 1/2] wifi: brcmfmac: add linefeed at end of file Arend van Spriel
  2024-01-28  9:30 ` [PATCH 2/2] wifi: brcmfmac: fix copyright year mentioned in platform_data header Arend van Spriel
  0 siblings, 2 replies; 4+ messages in thread
From: Arend van Spriel @ 2024-01-28  9:30 UTC (permalink / raw)
  To: Kalle Valo; +Cc: linux-wireless, brcm80211, Arend van Spriel

[-- Attachment #1: Type: text/plain, Size: 514 bytes --]

Two non-functional fixes that came up. Straightforward stuff.

These apply to the main branch of the wireless-next repository.

Arend van Spriel (2):
  wifi: brcmfmac: add linefeed at end of file
  wifi: brcmfmac: fix copyright year mentioned in platform_data header

 drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c | 2 +-
 include/linux/platform_data/brcmfmac.h                  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


base-commit: 28b3df1fe6ba2cb439ba109f095aa841fef3a54f
-- 
2.32.0


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4219 bytes --]

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

* [PATCH 1/2] wifi: brcmfmac: add linefeed at end of file
  2024-01-28  9:30 [PATCH 0/2] wifi: brcmfmac: minor cleanup fixes Arend van Spriel
@ 2024-01-28  9:30 ` Arend van Spriel
  2024-01-31 16:48   ` Kalle Valo
  2024-01-28  9:30 ` [PATCH 2/2] wifi: brcmfmac: fix copyright year mentioned in platform_data header Arend van Spriel
  1 sibling, 1 reply; 4+ messages in thread
From: Arend van Spriel @ 2024-01-28  9:30 UTC (permalink / raw)
  To: Kalle Valo; +Cc: linux-wireless, brcm80211, Arend van Spriel, Jakub Kicinski

[-- Attachment #1: Type: text/plain, Size: 1101 bytes --]

The following sparse warning was reported:

drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c:432:49:
  warning: no newline at end of file

Fixes: 31343230abb1 ("wifi: brcmfmac: export firmware interface functions")
Reported-by: Jakub Kicinski <kuba@kernel.org>
Closes: https://lore.kernel.org/all/20240125165128.7e43a1f3@kernel.org/
Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com>
---
 drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c
index bc1c6b5a6e31..6385a7db7f7d 100644
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c
@@ -429,4 +429,4 @@ s32 brcmf_fil_xtlv_data_get(struct brcmf_if *ifp, const char *name, u16 id,
 	mutex_unlock(&drvr->proto_block);
 	return err;
 }
-BRCMF_EXPORT_SYMBOL_GPL(brcmf_fil_xtlv_data_get);
\ No newline at end of file
+BRCMF_EXPORT_SYMBOL_GPL(brcmf_fil_xtlv_data_get);
-- 
2.32.0


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4219 bytes --]

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

* [PATCH 2/2] wifi: brcmfmac: fix copyright year mentioned in platform_data header
  2024-01-28  9:30 [PATCH 0/2] wifi: brcmfmac: minor cleanup fixes Arend van Spriel
  2024-01-28  9:30 ` [PATCH 1/2] wifi: brcmfmac: add linefeed at end of file Arend van Spriel
@ 2024-01-28  9:30 ` Arend van Spriel
  1 sibling, 0 replies; 4+ messages in thread
From: Arend van Spriel @ 2024-01-28  9:30 UTC (permalink / raw)
  To: Kalle Valo; +Cc: linux-wireless, brcm80211, Arend van Spriel, Dmitry Antipov

[-- Attachment #1: Type: text/plain, Size: 903 bytes --]

The driver found its inception a little after the year 201. According
git blame output it was added in 2016 so lets go with that.

Fixes: 4d7928959832 ("brcmfmac: switch to new platform data")
Reported-by: Dmitry Antipov <dmantipov@yandex.ru>
Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com>
---
 include/linux/platform_data/brcmfmac.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/platform_data/brcmfmac.h b/include/linux/platform_data/brcmfmac.h
index f922a192fe58..ec99b7b73d1d 100644
--- a/include/linux/platform_data/brcmfmac.h
+++ b/include/linux/platform_data/brcmfmac.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 201 Broadcom Corporation
+ * Copyright (c) 2016 Broadcom Corporation
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
-- 
2.32.0


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4219 bytes --]

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

* Re: [PATCH 1/2] wifi: brcmfmac: add linefeed at end of file
  2024-01-28  9:30 ` [PATCH 1/2] wifi: brcmfmac: add linefeed at end of file Arend van Spriel
@ 2024-01-31 16:48   ` Kalle Valo
  0 siblings, 0 replies; 4+ messages in thread
From: Kalle Valo @ 2024-01-31 16:48 UTC (permalink / raw)
  To: Arend van Spriel
  Cc: linux-wireless, brcm80211, Arend van Spriel, Jakub Kicinski

Arend van Spriel <arend.vanspriel@broadcom.com> wrote:

> The following sparse warning was reported:
> 
> drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c:432:49:
>   warning: no newline at end of file
> 
> Fixes: 31343230abb1 ("wifi: brcmfmac: export firmware interface functions")
> Reported-by: Jakub Kicinski <kuba@kernel.org>
> Closes: https://lore.kernel.org/all/20240125165128.7e43a1f3@kernel.org/
> Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com>

2 patches applied to wireless-next.git, thanks.

26f0dc8a705a wifi: brcmfmac: add linefeed at end of file
2a71528427c6 wifi: brcmfmac: fix copyright year mentioned in platform_data header

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/20240128093057.164791-2-arend.vanspriel@broadcom.com/

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


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

end of thread, other threads:[~2024-01-31 16:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-28  9:30 [PATCH 0/2] wifi: brcmfmac: minor cleanup fixes Arend van Spriel
2024-01-28  9:30 ` [PATCH 1/2] wifi: brcmfmac: add linefeed at end of file Arend van Spriel
2024-01-31 16:48   ` Kalle Valo
2024-01-28  9:30 ` [PATCH 2/2] wifi: brcmfmac: fix copyright year mentioned in platform_data header Arend van Spriel

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