drivers/net: fix trivial Kconfig syntax error
authorHeesub Shin <heesub.shin@samsung.com>
Thu, 20 Apr 2017 15:56:06 +0000 (00:56 +0900)
committerHeesub Shin <heesub.shin@samsung.com>
Thu, 20 Apr 2017 16:52:50 +0000 (01:52 +0900)
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 <heesub.shin@samsung.com>
os/drivers/net/Kconfig

index cb89d4b..6755baf 100644 (file)
@@ -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.