[PATCH] platform/chrome: cros_ec: remove reference to nonexistent CONFIG_SLEEP_TIMEOUT_MS
Ethan Nelson-Moore <[email protected]>
| Newsgroups | dev.linux.lists.chrome-platform |
|---|---|
| Message-ID | <[email protected]> |
A comment in <linux/platform_data/cros_ec_commands.h> refers to CONFIG_SLEEP_TIMEOUT_MS, which has never existed in the kernel. Simply remove this reference, as the default timeout is defined immediately below the comment. Discovered while searching for CONFIG_* symbols referenced in code but not defined in any Kconfig file. Signed-off-by: Ethan Nelson-Moore <[email protected]> --- include/linux/platform_data/cros_ec_commands.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/platform_data/cros_ec_commands.h b/include/linux/platform_data/cros_ec_commands.h index 749d985e9da2..3c0b9dff80b3 100644 --- a/include/linux/platform_data/cros_ec_commands.h +++ b/include/linux/platform_data/cros_ec_commands.h @@ -4368,8 +4368,7 @@ struct ec_params_host_sleep_event { } __ec_align1; /* - * Use a default timeout value (CONFIG_SLEEP_TIMEOUT_MS) for detecting sleep - * transition failures + * Use a default timeout value for detecting sleep transition failures */ #define EC_HOST_SLEEP_TIMEOUT_DEFAULT 0 -- 2.43.0