https://github.com/torvalds/linux
Revision 0cc03504c9f1b9c9da819094db37507c69ee9145 authored by Jesse Chan on 20 November 2017, 20:57:42 UTC, committed by David S. Miller on 23 November 2017, 16:23:49 UTC
This change resolves a new compile-time warning
when built as a loadable module:

WARNING: modpost: missing MODULE_LICENSE() in drivers/net/phy/cortina.o
see include/linux/module.h for more information

This adds the license as "GPL", which matches the header of the file.

MODULE_DESCRIPTION and MODULE_AUTHOR are also added.

Signed-off-by: Jesse Chan <jc@linux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 0c86a6b
Raw File
Tip revision: 0cc03504c9f1b9c9da819094db37507c69ee9145 authored by Jesse Chan on 20 November 2017, 20:57:42 UTC
net: phy: cortina: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE
Tip revision: 0cc0350
Kconfig
# SPDX-License-Identifier: GPL-2.0
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#
mainmenu "Linux/$ARCH $KERNELVERSION Kernel Configuration"

config SRCARCH
	string
	option env="SRCARCH"

source "arch/$SRCARCH/Kconfig"
back to top