From: Heesub Shin Date: Thu, 20 Apr 2017 15:56:06 +0000 (+0900) Subject: drivers/net: fix trivial Kconfig syntax error X-Git-Tag: 1.1_Public_Release~613^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d312fa9d19cb6ce191201d8ec2af565b936b7eaa;p=rtos%2Ftinyara.git drivers/net: fix trivial Kconfig syntax error Numerical range in Kconfig do not need to have a comma between start and end value [1]. This commit fixes weird warnings that 'make menuconfig' spits out as following: drivers/net/Kconfig:130:warning: ignoring unsupported character ',' drivers/net/Kconfig:199:warning: ignoring unsupported character ',' [1] https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt Signed-off-by: Heesub Shin --- diff --git a/os/drivers/net/Kconfig b/os/drivers/net/Kconfig index cb89d4b..6755baf 100644 --- a/os/drivers/net/Kconfig +++ b/os/drivers/net/Kconfig @@ -127,7 +127,7 @@ if ENC28J60 config ENC28J60_NINTERFACES int "Number of physical ENC28J60" default 1 - range 1,1 + range 1 1 ---help--- Specifies the number of physical ENC28J60 devices that will be supported. @@ -196,7 +196,7 @@ if ENCX24J600 config ENC28J60_NINTERFACES int "Number of physical ENCX24J600" default 1 - range 1,1 + range 1 1 ---help--- Specifies the number of physical ENCX24J600 devices that will be supported.