diff options
author | Breno Leitao <leitao@debian.org> | 2024-01-25 11:34:12 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-01-29 12:12:51 +0000 |
commit | 1c870c63d7d2474646472b13ac3d4a75d5aec368 (patch) | |
tree | 04a3588d6825947545bbe74419adf6014c6bfbcb /drivers | |
parent | dec836ed69d1d3641ea881671fa2ac6ec6b9dc3d (diff) | |
download | linux-stable-1c870c63d7d2474646472b13ac3d4a75d5aec368.tar.gz linux-stable-1c870c63d7d2474646472b13ac3d4a75d5aec368.tar.bz2 linux-stable-1c870c63d7d2474646472b13ac3d4a75d5aec368.zip |
net: fill in MODULE_DESCRIPTION()s for ocelot
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the Ocelot SoCs (VSC7514) helpers driver.
Signed-off-by: Breno Leitao <leitao@debian.org>
Reviewed-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/mscc/ocelot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mscc/ocelot.c b/drivers/net/ethernet/mscc/ocelot.c index 56ccbd4c37fe..2194f2a7ab27 100644 --- a/drivers/net/ethernet/mscc/ocelot.c +++ b/drivers/net/ethernet/mscc/ocelot.c @@ -3078,4 +3078,5 @@ void ocelot_deinit_port(struct ocelot *ocelot, int port) } EXPORT_SYMBOL(ocelot_deinit_port); +MODULE_DESCRIPTION("Microsemi Ocelot (VSC7514) Switch driver"); MODULE_LICENSE("Dual MIT/GPL"); |