[PATCH] net: ethernet: broadcom: bgmac: add SPDX license identifier

Chang Junzheng posted 1 patch 1 month, 1 week ago
drivers/net/ethernet/broadcom/bgmac-bcma.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] net: ethernet: broadcom: bgmac: add SPDX license identifier
Posted by Chang Junzheng 1 month, 1 week ago
Add missing SPDX-License-Identifier tag to bgmac-bcma.c.

The license is GPL-2.0 as indicated by the existing license text
in the file.

Signed-off-by: Chang Junzheng <guagua210311@qq.com>
---
 drivers/net/ethernet/broadcom/bgmac-bcma.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/broadcom/bgmac-bcma.c b/drivers/net/ethernet/broadcom/bgmac-bcma.c
index 36f9bad28e6a..2f32874698ab 100644
--- a/drivers/net/ethernet/broadcom/bgmac-bcma.c
+++ b/drivers/net/ethernet/broadcom/bgmac-bcma.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Driver for (BCM4706)? GBit MAC core on BCMA bus.
  *
-- 
2.43.0
Re: [PATCH] net: ethernet: broadcom: bgmac: add SPDX license identifier
Posted by Andrew Lunn 1 month, 1 week ago
On Wed, Nov 05, 2025 at 07:28:20PM +0800, Chang Junzheng wrote:
> Add missing SPDX-License-Identifier tag to bgmac-bcma.c.
> 
> The license is GPL-2.0 as indicated by the existing license text
> in the file.

It is normal to remove such license text when adding an SPDX header.

Please also read:

https://www.kernel.org/doc/html/latest/process/maintainer-netdev.html

	Andrew