Message ID | 20240618-md-m68k-drivers-net-ethernet-cirrus-v1-1-07f5bd0b64cb@quicinc.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5e736135ad00106bc4b7eff3827162bc1e08b2e3 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net: ethernet: mac89x0: add missing MODULE_DESCRIPTION() macro | expand |
On Tue, Jun 18, 2024 at 10:41:54AM -0700, Jeff Johnson wrote: > With ARCH=m68k, make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/ethernet/cirrus/mac89x0.o > > Add the missing invocation of the MODULE_DESCRIPTION() macro. > > Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Reviewed-by: Simon Horman <horms@kernel.org>
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Tue, 18 Jun 2024 10:41:54 -0700 you wrote: > With ARCH=m68k, make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/ethernet/cirrus/mac89x0.o > > Add the missing invocation of the MODULE_DESCRIPTION() macro. > > Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> > > [...] Here is the summary with links: - [net-next] net: ethernet: mac89x0: add missing MODULE_DESCRIPTION() macro https://git.kernel.org/netdev/net-next/c/5e736135ad00 You are awesome, thank you!
diff --git a/drivers/net/ethernet/cirrus/mac89x0.c b/drivers/net/ethernet/cirrus/mac89x0.c index 887876f35f10..84b300fee2bb 100644 --- a/drivers/net/ethernet/cirrus/mac89x0.c +++ b/drivers/net/ethernet/cirrus/mac89x0.c @@ -554,6 +554,7 @@ static int set_mac_address(struct net_device *dev, void *addr) return 0; } +MODULE_DESCRIPTION("Macintosh CS89x0-based Ethernet driver"); MODULE_LICENSE("GPL"); static void mac89x0_device_remove(struct platform_device *pdev)
With ARCH=m68k, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/net/ethernet/cirrus/mac89x0.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> --- drivers/net/ethernet/cirrus/mac89x0.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 6ba59ff4227927d3a8530fc2973b80e94b54d58f change-id: 20240618-md-m68k-drivers-net-ethernet-cirrus-ac220117b1fd