[PATCH net v2 8/9] net: fill in MODULE_DESCRIPTION()s for ipvtap

Breno Leitao posted 9 patches 2 years ago
There is a newer version of this series
[PATCH net v2 8/9] net: fill in MODULE_DESCRIPTION()s for ipvtap
Posted by Breno Leitao 2 years ago
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the IP-VLAN based tap driver.

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

diff --git a/drivers/net/ipvlan/ipvtap.c b/drivers/net/ipvlan/ipvtap.c
index 60944a4beada..1afc4c47be73 100644
--- a/drivers/net/ipvlan/ipvtap.c
+++ b/drivers/net/ipvlan/ipvtap.c
@@ -237,4 +237,5 @@ static void __exit ipvtap_exit(void)
 module_exit(ipvtap_exit);
 MODULE_ALIAS_RTNL_LINK("ipvtap");
 MODULE_AUTHOR("Sainath Grandhi <sainath.grandhi@intel.com>");
+MODULE_DESCRIPTION("IP-VLAN based tap driver");
 MODULE_LICENSE("GPL");
-- 
2.39.3
Re: [PATCH net v2 8/9] net: fill in MODULE_DESCRIPTION()s for ipvtap
Posted by Simon Horman 2 years ago
On Wed, Feb 07, 2024 at 02:19:27AM -0800, Breno Leitao wrote:
> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to the IP-VLAN based tap driver.
> 
> Signed-off-by: Breno Leitao <leitao@debian.org>

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