soc/amd/common/*/Kconfig: remove unneeded default n for bool options

n is the default of bool Kconfig options, so no need to have that added
to each option.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I8775d84caee6fda95eb7749e96090fe05417e764
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50779
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/soc/amd/common/Kconfig.common b/src/soc/amd/common/Kconfig.common
index a0836a3..fa1d14a 100644
--- a/src/soc/amd/common/Kconfig.common
+++ b/src/soc/amd/common/Kconfig.common
@@ -7,7 +7,6 @@
 
 config SOC_AMD_PI
 	bool
-	default n
 
 source "src/soc/amd/common/block/*/Kconfig"
 
diff --git a/src/soc/amd/common/block/acpi/Kconfig b/src/soc/amd/common/block/acpi/Kconfig
index 21961f7..024b378 100644
--- a/src/soc/amd/common/block/acpi/Kconfig
+++ b/src/soc/amd/common/block/acpi/Kconfig
@@ -2,6 +2,5 @@
 	bool
 	depends on SOC_AMD_COMMON_BLOCK_ACPIMMIO
 	select ACPI_AMD_HARDWARE_SLEEP_VALUES
-	default n
 	help
 	  Select this option to use the AcpiMmio ACPI registers.
diff --git a/src/soc/amd/common/block/acpimmio/Kconfig b/src/soc/amd/common/block/acpimmio/Kconfig
index f14cc0c..d74a00b 100644
--- a/src/soc/amd/common/block/acpimmio/Kconfig
+++ b/src/soc/amd/common/block/acpimmio/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_ACPIMMIO
 	bool
-	default n
 	help
 	  Select this option to enable hardware blocks in the AcpiMmio
 	  address space (0xfed8xxxx).
diff --git a/src/soc/amd/common/block/alink/Kconfig b/src/soc/amd/common/block/alink/Kconfig
index 75cf66f..fb28858 100644
--- a/src/soc/amd/common/block/alink/Kconfig
+++ b/src/soc/amd/common/block/alink/Kconfig
@@ -1,5 +1,4 @@
 config SOC_AMD_COMMON_BLOCK_ALINK
 	bool
-	default n
 	help
 	  Select this option to access the FCH A-link configuration registers.
diff --git a/src/soc/amd/common/block/aoac/Kconfig b/src/soc/amd/common/block/aoac/Kconfig
index be9dc67..e779e7b 100644
--- a/src/soc/amd/common/block/aoac/Kconfig
+++ b/src/soc/amd/common/block/aoac/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_AOAC
 	bool
-	default n
 	help
 	  Select this option to add the common functions for the AOAC (always
 	  on, always connected) block to the build.
diff --git a/src/soc/amd/common/block/cpu/Kconfig b/src/soc/amd/common/block/cpu/Kconfig
index f418ee7..851b091 100644
--- a/src/soc/amd/common/block/cpu/Kconfig
+++ b/src/soc/amd/common/block/cpu/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_CAR
 	bool
-	default n
 	help
 	  This option allows the SOC to use a standard AMD cache-as-ram (CAR)
 	  implementation.  CAR setup is built into bootblock and teardown is
@@ -14,7 +13,6 @@
 
 config SOC_AMD_COMMON_BLOCK_NONCAR
 	bool
-	default n
 	help
 	  From family 17h on AMD CPUs/APUs don't use cache as RAM (CAR) any
 	  more, since the RAM initialization is already done by the PSP when
@@ -30,7 +28,6 @@
 
 config SOC_AMD_COMMON_BLOCK_SMM
 	bool
-	default n
 	help
 	  Add common SMM relocation and handler functionality to the build.
 
@@ -39,7 +36,6 @@
 	select COLLECT_TIMESTAMPS_NO_TSC # selected use SoC-specific timestamp function
 	select TSC_SYNC_LFENCE
 	select UDELAY_TSC
-	default n
 	help
 	  Select this option to add the common functions for getting the TSC
 	  frequency of AMD family 17h and 19h CPUs/APUs and to provide TSC-
@@ -48,7 +44,6 @@
 config SOC_AMD_COMMON_BLOCK_UCODE
 	bool
 	select SUPPORT_CPU_UCODE_IN_CBFS
-	default n
 	help
 	  Builds in support for loading uCode.
 
diff --git a/src/soc/amd/common/block/gpio_banks/Kconfig b/src/soc/amd/common/block/gpio_banks/Kconfig
index 115aa2c..1efb1db 100644
--- a/src/soc/amd/common/block/gpio_banks/Kconfig
+++ b/src/soc/amd/common/block/gpio_banks/Kconfig
@@ -1,7 +1,6 @@
 config SOC_AMD_COMMON_BLOCK_BANKED_GPIOS
 	bool
 	depends on SOC_AMD_COMMON_BLOCK_ACPIMMIO
-	default n
 	help
 	  Select this option to use the newer style banks of GPIO signals.
 	  These are at offsets +0x1500, +0x1600, and +0x1700 from the AcpiMmio
diff --git a/src/soc/amd/common/block/graphics/Kconfig b/src/soc/amd/common/block/graphics/Kconfig
index 4cda353..c277a0b 100644
--- a/src/soc/amd/common/block/graphics/Kconfig
+++ b/src/soc/amd/common/block/graphics/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_GRAPHICS
 	bool
-	default n
 	help
 	  Select this option to use AMD common graphics driver support.
 
diff --git a/src/soc/amd/common/block/hda/Kconfig b/src/soc/amd/common/block/hda/Kconfig
index 775de2f..4c83b1c 100644
--- a/src/soc/amd/common/block/hda/Kconfig
+++ b/src/soc/amd/common/block/hda/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_HDA
 	bool
-	default n
 	help
 	  Select this option to use AMD common High Definition Audio
 	  driver support.
diff --git a/src/soc/amd/common/block/iommu/Kconfig b/src/soc/amd/common/block/iommu/Kconfig
index 4580400..521bf8a 100644
--- a/src/soc/amd/common/block/iommu/Kconfig
+++ b/src/soc/amd/common/block/iommu/Kconfig
@@ -1,5 +1,4 @@
 config SOC_AMD_COMMON_BLOCK_IOMMU
 	bool
-	default n
 	help
 	  Select this option to use AMD common IOMMU support.
diff --git a/src/soc/amd/common/block/lpc/Kconfig b/src/soc/amd/common/block/lpc/Kconfig
index 3aaccf3..6ea34fb 100644
--- a/src/soc/amd/common/block/lpc/Kconfig
+++ b/src/soc/amd/common/block/lpc/Kconfig
@@ -1,18 +1,15 @@
 config SOC_AMD_COMMON_BLOCK_LPC
 	bool
-	default n
 	help
 	  Select this option to use the traditional LPC-ISA bridge at D14F3.
 
 config PROVIDES_ROM_SHARING
 	bool
-	default n
 	help
 	  Select this option if the LPC bridge supports ROM sharing.
 
 config SOC_AMD_COMMON_BLOCK_HAS_ESPI
 	bool
-	default n
 	help
 	  Select this option if platform supports eSPI using D14F3 configuration
 	  registers.
@@ -20,7 +17,6 @@
 config SOC_AMD_COMMON_BLOCK_USE_ESPI
 	bool
 	depends on SOC_AMD_COMMON_BLOCK_HAS_ESPI
-	default n
 	help
 	  Select this option if mainboard uses eSPI instead of LPC (if supported
 	  by platform).
@@ -28,4 +24,3 @@
 config SOC_AMD_COMMON_BLOCK_HAS_ESPI_SUB_DECODE
 	bool
 	depends on SOC_AMD_COMMON_BLOCK_HAS_ESPI
-	default n
diff --git a/src/soc/amd/common/block/pci/Kconfig b/src/soc/amd/common/block/pci/Kconfig
index a59d87e..4af0aa0 100644
--- a/src/soc/amd/common/block/pci/Kconfig
+++ b/src/soc/amd/common/block/pci/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_PCI
 	bool
-	default n
 	select SOC_AMD_COMMON_BLOCK_PCI_MMCONF
 	help
 	  This option builds functions used to program PCI interrupt
@@ -8,7 +7,6 @@
 
 config SOC_AMD_COMMON_BLOCK_PCI_MMCONF
 	bool
-	default n
 	help
 	  Selecting this option adds the AMD-common enable_pci_mmconf function
 	  to the build.
diff --git a/src/soc/amd/common/block/pi/Kconfig b/src/soc/amd/common/block/pi/Kconfig
index cf8c79a..d2a2a6a 100644
--- a/src/soc/amd/common/block/pi/Kconfig
+++ b/src/soc/amd/common/block/pi/Kconfig
@@ -1,7 +1,6 @@
 config SOC_AMD_COMMON_BLOCK_PI
 	bool
 	select HAVE_DEBUG_RAM_SETUP
-	default n
 	help
 	  This option builds functions that interface AMD's AGESA reference
 	  code packaged in the binaryPI form.
diff --git a/src/soc/amd/common/block/psp/Kconfig b/src/soc/amd/common/block/psp/Kconfig
index 85ec987..c5ec560 100644
--- a/src/soc/amd/common/block/psp/Kconfig
+++ b/src/soc/amd/common/block/psp/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_PSP
 	bool
-	default n
 	help
 	  This option builds in the Platform Security Processor initialization
 	  functions. Do not select this directly in SoC code, select
@@ -8,21 +7,18 @@
 
 config SOC_AMD_COMMON_BLOCK_PSP_GEN1
 	bool
-	default n
 	select SOC_AMD_COMMON_BLOCK_PSP
 	help
 	  Used by the PSP in AMD systems before family 17h, e.g. stoneyridge.
 
 config SOC_AMD_COMMON_BLOCK_PSP_GEN2
 	bool
-	default n
 	select SOC_AMD_COMMON_BLOCK_PSP
 	help
 	  Used by the PSP in AMD family 17h, 19h and possibly newer CPUs.
 
 config SOC_AMD_PSP_SELECTABLE_SMU_FW
 	bool
-	default n
 	help
 	  Some PSP implementations allow storing SMU firmware into cbfs and
 	  calling the PSP to load the blobs at the proper time.
diff --git a/src/soc/amd/common/block/s3/Kconfig b/src/soc/amd/common/block/s3/Kconfig
index ebc1695..797a598 100644
--- a/src/soc/amd/common/block/s3/Kconfig
+++ b/src/soc/amd/common/block/s3/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_S3
 	bool
-	default n
 	depends on SOC_AMD_COMMON_BLOCK_ACPI
 	select CACHE_MRC_SETTINGS
 	select MRC_WRITE_NV_LATE
diff --git a/src/soc/amd/common/block/sata/Kconfig b/src/soc/amd/common/block/sata/Kconfig
index 0c3d5bc..25aef1f 100644
--- a/src/soc/amd/common/block/sata/Kconfig
+++ b/src/soc/amd/common/block/sata/Kconfig
@@ -1,5 +1,4 @@
 config SOC_AMD_COMMON_BLOCK_SATA
 	bool
-	default n
 	help
 	  Select this option to use AMD common SATA driver support.
diff --git a/src/soc/amd/common/block/smbus/Kconfig b/src/soc/amd/common/block/smbus/Kconfig
index dd54b63..194cf4f 100644
--- a/src/soc/amd/common/block/smbus/Kconfig
+++ b/src/soc/amd/common/block/smbus/Kconfig
@@ -1,5 +1,4 @@
 config SOC_AMD_COMMON_BLOCK_SMBUS
 	bool
-	default n
 	help
 	  Select this option to add FCH SMBus controller functions to the build.
diff --git a/src/soc/amd/common/block/smi/Kconfig b/src/soc/amd/common/block/smi/Kconfig
index 1b05b14..b205437 100644
--- a/src/soc/amd/common/block/smi/Kconfig
+++ b/src/soc/amd/common/block/smi/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_SMI
 	bool
-	default n
 	help
 	  Select this option to add the common functions for setting up the SMI
 	  configuration to the build.
diff --git a/src/soc/amd/common/block/smu/Kconfig b/src/soc/amd/common/block/smu/Kconfig
index 60c231f..fe2687a 100644
--- a/src/soc/amd/common/block/smu/Kconfig
+++ b/src/soc/amd/common/block/smu/Kconfig
@@ -1,5 +1,4 @@
 config SOC_AMD_COMMON_BLOCK_SMU
 	bool
-	default n
 	help
 	  Select this option to add functions to communicate with the SMU to the build.
diff --git a/src/soc/amd/common/block/spi/Kconfig b/src/soc/amd/common/block/spi/Kconfig
index c8f6d1e..fa24f83 100644
--- a/src/soc/amd/common/block/spi/Kconfig
+++ b/src/soc/amd/common/block/spi/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_SPI
 	bool
-	default n
 	help
 	  Select this option to add FCH SPI controller functions to the build.
 	  This overwrites the structure spi_flash_ops to use FCH SPI code
@@ -8,7 +7,6 @@
 
 config SOC_AMD_COMMON_BLOCK_SPI_DEBUG
 	bool
-	default n
 
 config EFS_SPI_READ_MODE
 	int
diff --git a/src/soc/amd/common/block/uart/Kconfig b/src/soc/amd/common/block/uart/Kconfig
index c117dcc..438fde0 100644
--- a/src/soc/amd/common/block/uart/Kconfig
+++ b/src/soc/amd/common/block/uart/Kconfig
@@ -1,6 +1,5 @@
 config SOC_AMD_COMMON_BLOCK_UART
 	bool
-	default n
 	help
 	  Select this option to add the common functions for setting up the
 	  UART configuration to the build.
@@ -9,7 +8,6 @@
 
 config AMD_SOC_CONSOLE_UART
 	bool "Use integrated AMD SoC UART controller for console"
-	default n
 	select DRIVERS_UART_8250MEM
 	select DRIVERS_UART_8250MEM_32
 	select NO_UART_ON_SUPERIO