diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-12-19 11:51:31 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-12-30 21:28:32 -0500 |
commit | 4753315601b4203c500c979f87b2e55be2aedaa5 (patch) | |
tree | cd6d3a143c2c523013405c57b43582006a78c014 /src | |
parent | 9b60daf62dd7c02164c53f2baa72e3e6c8af441f (diff) | |
download | kutter-4753315601b4203c500c979f87b2e55be2aedaa5.tar.gz kutter-4753315601b4203c500c979f87b2e55be2aedaa5.tar.xz kutter-4753315601b4203c500c979f87b2e55be2aedaa5.zip |
Kconfig: No need to specify "default n" in main Kconfig file
A "bool" option already defaults to "n" so no need to state that
explicitly.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/Kconfig | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Kconfig b/src/Kconfig index cfad688d..2309fe9e 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -4,7 +4,6 @@ mainmenu "Klipper Firmware Configuration" config LOW_LEVEL_OPTIONS bool "Enable extra low-level configuration options" - default n help Enable low-level configuration options that (if modified) may result in a build that does not function correctly. @@ -111,31 +110,22 @@ config INITIAL_PINS # if the hardware does not support the feature. config HAVE_GPIO bool - default n config HAVE_GPIO_ADC bool - default n config HAVE_GPIO_SPI bool - default n config HAVE_GPIO_I2C bool - default n config HAVE_GPIO_HARD_PWM bool - default n config HAVE_GPIO_BITBANGING bool - default n config HAVE_STRICT_TIMING bool - default n config HAVE_CHIPID bool - default n config HAVE_STEPPER_BOTH_EDGE bool - default n config INLINE_STEPPER_HACK # Enables gcc to inline stepper_event() into the main timer irq handler |