diff options
author | Breno Leitao <leitao@debian.org> | 2024-01-25 22:34:16 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-01-29 15:12:51 +0300 |
commit | 3e4620c891480e2058b0fb6dd1d1bbcd90aba72a (patch) | |
tree | 0ca2c9b7dac899c0f3073c78c405e5f83d1b6d69 | |
parent | 23f487f70c73e31e72ecc0293ee3657da6c67425 (diff) | |
download | linux-3e4620c891480e2058b0fb6dd1d1bbcd90aba72a.tar.xz |
net: fill in MODULE_DESCRIPTION()s for cpsw-common
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the TI CPSW switch module.
Signed-off-by: Breno Leitao <leitao@debian.org>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/ti/cpsw-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/ti/cpsw-common.c b/drivers/net/ethernet/ti/cpsw-common.c index 26dc906eae90..57fe936bb177 100644 --- a/drivers/net/ethernet/ti/cpsw-common.c +++ b/drivers/net/ethernet/ti/cpsw-common.c @@ -90,4 +90,5 @@ int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr) } EXPORT_SYMBOL_GPL(ti_cm_get_macid); +MODULE_DESCRIPTION("TI CPSW Switch common module"); MODULE_LICENSE("GPL"); |