treewide [Kconfig]: Remove useless comment

Change-Id: I3dafffa61f4fe6089fd11ef6579626aff8088df5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50185
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
diff --git a/payloads/external/U-Boot/Kconfig b/payloads/external/U-Boot/Kconfig
index a2bc512..9e51ae1 100644
--- a/payloads/external/U-Boot/Kconfig
+++ b/payloads/external/U-Boot/Kconfig
@@ -1,6 +1,6 @@
 if PAYLOAD_UBOOT
 
-config PAYLOAD_SPECIFIC_OPTIONS # dummy
+config PAYLOAD_SPECIFIC_OPTIONS
 	def_bool y
 	select PAYLOAD_IS_FLAT_BINARY
 
diff --git a/payloads/libpayload/arch/arm/Kconfig b/payloads/libpayload/arch/arm/Kconfig
index b5a2be5..acaf167 100644
--- a/payloads/libpayload/arch/arm/Kconfig
+++ b/payloads/libpayload/arch/arm/Kconfig
@@ -28,7 +28,7 @@
 
 if ARCH_ARM
 
-config ARCH_SPECIFIC_OPTIONS # dummy
+config ARCH_SPECIFIC_OPTIONS
 	def_bool y
 	select LITTLE_ENDIAN
 
diff --git a/payloads/libpayload/arch/arm64/Kconfig b/payloads/libpayload/arch/arm64/Kconfig
index 439d27b..18f3770 100644
--- a/payloads/libpayload/arch/arm64/Kconfig
+++ b/payloads/libpayload/arch/arm64/Kconfig
@@ -28,7 +28,7 @@
 
 if ARCH_ARM64
 
-config ARCH_SPECIFIC_OPTIONS # dummy
+config ARCH_SPECIFIC_OPTIONS
 	def_bool y
 	select LITTLE_ENDIAN
 
diff --git a/payloads/libpayload/arch/x86/Kconfig b/payloads/libpayload/arch/x86/Kconfig
index 05cf58b..f590d58 100644
--- a/payloads/libpayload/arch/x86/Kconfig
+++ b/payloads/libpayload/arch/x86/Kconfig
@@ -28,7 +28,7 @@
 
 if ARCH_X86
 
-config ARCH_SPECIFIC_OPTIONS # dummy
+config ARCH_SPECIFIC_OPTIONS
 	def_bool y
 	select LITTLE_ENDIAN
 	select IO_ADDRESS_SPACE
diff --git a/src/cpu/intel/slot_1/Kconfig b/src/cpu/intel/slot_1/Kconfig
index aafe110..cc24833 100644
--- a/src/cpu/intel/slot_1/Kconfig
+++ b/src/cpu/intel/slot_1/Kconfig
@@ -5,7 +5,7 @@
 
 if CPU_INTEL_SLOT_1
 
-config SLOT_SPECIFIC_OPTIONS # dummy
+config SLOT_SPECIFIC_OPTIONS
 	def_bool y
 	select CPU_INTEL_MODEL_65X
 	select CPU_INTEL_MODEL_67X
diff --git a/src/cpu/intel/socket_441/Kconfig b/src/cpu/intel/socket_441/Kconfig
index 1b930de..5b6ae7f 100644
--- a/src/cpu/intel/socket_441/Kconfig
+++ b/src/cpu/intel/socket_441/Kconfig
@@ -3,7 +3,7 @@
 
 if CPU_INTEL_SOCKET_441
 
-config SOCKET_SPECIFIC_OPTIONS # dummy
+config SOCKET_SPECIFIC_OPTIONS
 	def_bool y
 	select CPU_INTEL_MODEL_106CX
 	select MMX
diff --git a/src/cpu/intel/socket_LGA775/Kconfig b/src/cpu/intel/socket_LGA775/Kconfig
index 3ce106a..0848d26 100644
--- a/src/cpu/intel/socket_LGA775/Kconfig
+++ b/src/cpu/intel/socket_LGA775/Kconfig
@@ -3,7 +3,7 @@
 
 if CPU_INTEL_SOCKET_LGA775
 
-config SOCKET_SPECIFIC_OPTIONS # dummy
+config SOCKET_SPECIFIC_OPTIONS
 	def_bool y
 	select CPU_INTEL_MODEL_6FX
 	select CPU_INTEL_MODEL_F3X
diff --git a/src/cpu/intel/socket_m/Kconfig b/src/cpu/intel/socket_m/Kconfig
index 32eedb6..50eb7e3 100644
--- a/src/cpu/intel/socket_m/Kconfig
+++ b/src/cpu/intel/socket_m/Kconfig
@@ -3,7 +3,7 @@
 
 if CPU_INTEL_SOCKET_M
 
-config SOCKET_SPECIFIC_OPTIONS # dummy
+config SOCKET_SPECIFIC_OPTIONS
 	def_bool y
 	select CPU_INTEL_MODEL_6EX
 	select CPU_INTEL_MODEL_6FX
diff --git a/src/cpu/intel/socket_mPGA604/Kconfig b/src/cpu/intel/socket_mPGA604/Kconfig
index 176ae9e..7b08699 100644
--- a/src/cpu/intel/socket_mPGA604/Kconfig
+++ b/src/cpu/intel/socket_mPGA604/Kconfig
@@ -3,7 +3,7 @@
 
 if CPU_INTEL_SOCKET_MPGA604
 
-config SOCKET_SPECIFIC_OPTIONS # dummy
+config SOCKET_SPECIFIC_OPTIONS
 	def_bool y
 	select CPU_INTEL_MODEL_F2X
 	select MMX
diff --git a/src/mainboard/amd/padmelon/Kconfig b/src/mainboard/amd/padmelon/Kconfig
index 894df57..48df9ca 100644
--- a/src/mainboard/amd/padmelon/Kconfig
+++ b/src/mainboard/amd/padmelon/Kconfig
@@ -2,7 +2,7 @@
 
 if BOARD_AMD_PADMELON
 
-config BOARD_SPECIFIC_OPTIONS # dummy
+config BOARD_SPECIFIC_OPTIONS
 	def_bool y
 	select SOC_AMD_STONEYRIDGE
 	select AMD_APU_PKG_FP4
diff --git a/src/mainboard/google/veyron/Kconfig b/src/mainboard/google/veyron/Kconfig
index 1d3496c..97444d8 100644
--- a/src/mainboard/google/veyron/Kconfig
+++ b/src/mainboard/google/veyron/Kconfig
@@ -1,6 +1,6 @@
 ## SPDX-License-Identifier: GPL-2.0-only
 
-config BOARD_GOOGLE_VEYRON # dummy option to be selected by variant boards
+config BOARD_GOOGLE_VEYRON
 	def_bool n
 
 if BOARD_GOOGLE_VEYRON
diff --git a/src/northbridge/intel/e7505/Kconfig b/src/northbridge/intel/e7505/Kconfig
index e07691a..d222e2e 100644
--- a/src/northbridge/intel/e7505/Kconfig
+++ b/src/northbridge/intel/e7505/Kconfig
@@ -5,7 +5,7 @@
 
 if NORTHBRIDGE_INTEL_E7505
 
-config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
+config NORTHBRIDGE_SPECIFIC_OPTIONS
 	def_bool y
 	select NO_MMCONF_SUPPORT
 	select HAVE_DEBUG_RAM_SETUP
diff --git a/src/northbridge/intel/gm45/Kconfig b/src/northbridge/intel/gm45/Kconfig
index 256b088..58942f0 100644
--- a/src/northbridge/intel/gm45/Kconfig
+++ b/src/northbridge/intel/gm45/Kconfig
@@ -5,7 +5,7 @@
 
 if NORTHBRIDGE_INTEL_GM45
 
-config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
+config NORTHBRIDGE_SPECIFIC_OPTIONS
 	def_bool y
 	select HAVE_DEBUG_RAM_SETUP
 	select VGA
diff --git a/src/northbridge/intel/i945/Kconfig b/src/northbridge/intel/i945/Kconfig
index 456193a..23369e7 100644
--- a/src/northbridge/intel/i945/Kconfig
+++ b/src/northbridge/intel/i945/Kconfig
@@ -5,7 +5,7 @@
 
 if NORTHBRIDGE_INTEL_I945
 
-config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
+config NORTHBRIDGE_SPECIFIC_OPTIONS
 	def_bool y
 	select HAVE_DEBUG_RAM_SETUP
 	select VGA
diff --git a/src/northbridge/intel/pineview/Kconfig b/src/northbridge/intel/pineview/Kconfig
index b1863ef..ad134f2 100644
--- a/src/northbridge/intel/pineview/Kconfig
+++ b/src/northbridge/intel/pineview/Kconfig
@@ -5,7 +5,7 @@
 
 if NORTHBRIDGE_INTEL_PINEVIEW
 
-config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
+config NORTHBRIDGE_SPECIFIC_OPTIONS
 	def_bool y
 	select HAVE_DEBUG_RAM_SETUP
 	select VGA
diff --git a/src/northbridge/intel/x4x/Kconfig b/src/northbridge/intel/x4x/Kconfig
index 32e85d3..711340d 100644
--- a/src/northbridge/intel/x4x/Kconfig
+++ b/src/northbridge/intel/x4x/Kconfig
@@ -5,7 +5,7 @@
 
 if NORTHBRIDGE_INTEL_X4X
 
-config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
+config NORTHBRIDGE_SPECIFIC_OPTIONS
 	def_bool y
 	select HAVE_DEBUG_RAM_SETUP
 	select VGA
diff --git a/src/southbridge/amd/agesa/hudson/Kconfig b/src/southbridge/amd/agesa/hudson/Kconfig
index d0fbc49..06162775 100644
--- a/src/southbridge/amd/agesa/hudson/Kconfig
+++ b/src/southbridge/amd/agesa/hudson/Kconfig
@@ -8,7 +8,7 @@
 
 if SOUTHBRIDGE_AMD_AGESA_HUDSON || SOUTHBRIDGE_AMD_AGESA_YANGTZE
 
-config SOUTHBRIDGE_SPECIFIC_OPTIONS # dummy
+config SOUTHBRIDGE_SPECIFIC_OPTIONS
 	def_bool y
 	select IOAPIC
 	select HAVE_USBDEBUG_OPTIONS
diff --git a/src/southbridge/amd/pi/hudson/Kconfig b/src/southbridge/amd/pi/hudson/Kconfig
index 6280f3a..b3b844f 100644
--- a/src/southbridge/amd/pi/hudson/Kconfig
+++ b/src/southbridge/amd/pi/hudson/Kconfig
@@ -11,7 +11,7 @@
 
 if SOUTHBRIDGE_AMD_PI_AVALON || SOUTHBRIDGE_AMD_PI_BOLTON || SOUTHBRIDGE_AMD_PI_KERN
 
-config SOUTHBRIDGE_SPECIFIC_OPTIONS # dummy
+config SOUTHBRIDGE_SPECIFIC_OPTIONS
 	def_bool y
 	select IOAPIC
 	select HAVE_USBDEBUG_OPTIONS
diff --git a/src/southbridge/intel/bd82x6x/Kconfig b/src/southbridge/intel/bd82x6x/Kconfig
index 06ac5c6..21816e5 100644
--- a/src/southbridge/intel/bd82x6x/Kconfig
+++ b/src/southbridge/intel/bd82x6x/Kconfig
@@ -8,7 +8,7 @@
 
 if SOUTHBRIDGE_INTEL_BD82X6X || SOUTHBRIDGE_INTEL_C216
 
-config SOUTH_BRIDGE_OPTIONS # dummy
+config SOUTH_BRIDGE_OPTIONS
 	def_bool y
 	select ACPI_INTEL_HARDWARE_SLEEP_VALUES
 	select ACPI_SOC_NVS
diff --git a/src/southbridge/intel/ibexpeak/Kconfig b/src/southbridge/intel/ibexpeak/Kconfig
index cea0efe..f172bf1 100644
--- a/src/southbridge/intel/ibexpeak/Kconfig
+++ b/src/southbridge/intel/ibexpeak/Kconfig
@@ -5,7 +5,7 @@
 
 if SOUTHBRIDGE_INTEL_IBEXPEAK
 
-config SOUTH_BRIDGE_OPTIONS # dummy
+config SOUTH_BRIDGE_OPTIONS
 	def_bool y
 	select ACPI_INTEL_HARDWARE_SLEEP_VALUES
 	select ACPI_SOC_NVS
diff --git a/src/southbridge/intel/lynxpoint/Kconfig b/src/southbridge/intel/lynxpoint/Kconfig
index 7ad3c00..a9a2f5b 100644
--- a/src/southbridge/intel/lynxpoint/Kconfig
+++ b/src/southbridge/intel/lynxpoint/Kconfig
@@ -5,7 +5,7 @@
 
 if SOUTHBRIDGE_INTEL_LYNXPOINT
 
-config SOUTH_BRIDGE_OPTIONS # dummy
+config SOUTH_BRIDGE_OPTIONS
 	def_bool y
 	select ACPI_INTEL_HARDWARE_SLEEP_VALUES
 	select ACPI_SOC_NVS