From 6d95448772b4f670a349f560ccecb6adc1d2cb9c Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Wed, 27 Jun 2018 13:47:49 +0200 Subject: [PATCH] drivers: ptp_clock: Kconfig: Remove redundant 'default n' properties Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that on any of these symbols though, and is inconsistent. This will make the auto-generated Kconfig documentation have "No defaults. Implicitly defaults to n." as well, which is clearer than 'default n if ...' Signed-off-by: Ulf Magnusson --- drivers/ptp_clock/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/ptp_clock/Kconfig b/drivers/ptp_clock/Kconfig index e6067358740..420e9d9b1af 100644 --- a/drivers/ptp_clock/Kconfig +++ b/drivers/ptp_clock/Kconfig @@ -6,6 +6,5 @@ menuconfig PTP_CLOCK bool "Precision Time Protocol Clock driver support" - default n help Enable options for Precision Time Protocol Clock drivers.