[net,v2,2/9] net: fill in MODULE_DESCRIPTION()s for mpoa

Message ID 20240207101929.484681-3-leitao@debian.org
State New
Headers
Series net: Fix MODULE_DESCRIPTION() for net (p5) |

Commit Message

Breno Leitao Feb. 7, 2024, 10:19 a.m. UTC
  W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the Multi-Protocol Over ATM (MPOA) driver.

Signed-off-by: Breno Leitao <leitao@debian.org>
---
 net/atm/mpc.c | 1 +
 1 file changed, 1 insertion(+)
  

Comments

Simon Horman Feb. 7, 2024, 11:41 a.m. UTC | #1
On Wed, Feb 07, 2024 at 02:19:21AM -0800, Breno Leitao wrote:
> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to the Multi-Protocol Over ATM (MPOA) driver.
> 
> Signed-off-by: Breno Leitao <leitao@debian.org>

Reviewed-by: Simon Horman <horms@kernel.org>
  

Patch

diff --git a/net/atm/mpc.c b/net/atm/mpc.c
index 033871e718a3..324e3ab96bb3 100644
--- a/net/atm/mpc.c
+++ b/net/atm/mpc.c
@@ -1532,4 +1532,5 @@  static void __exit atm_mpoa_cleanup(void)
 module_init(atm_mpoa_init);
 module_exit(atm_mpoa_cleanup);
 
+MODULE_DESCRIPTION("Multi-Protocol Over ATM (MPOA) driver");
 MODULE_LICENSE("GPL");