Received: by 2002:a25:c205:0:0:0:0:0 with SMTP id s5csp5537466ybf; Thu, 5 Mar 2020 02:29:23 -0800 (PST) X-Google-Smtp-Source: ADFU+vsUrRkInt6J2jyRb6PzuVdakSR2Qosyy93VOWGXkYMqILTuWED6wVxmoyaGRKukTaUlVgFp X-Received: by 2002:a9d:4702:: with SMTP id a2mr1038610otf.319.1583404163307; Thu, 05 Mar 2020 02:29:23 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1583404163; cv=none; d=google.com; s=arc-20160816; b=idYuWUXutj7lYT0v5jEUeu93CBr5mm+iav7Hvcy608LHxaJYE9QW1Cu/FABnluTXF/ aJX9oPPo2WC9q1TYVbvgjoSKi1QKYna+x7wR4BKLpLAJyQB7s/rvrV0g6NG0KVfUDmi7 tQWsDW2u9Hixg3N3IMV5SDrbLlb86CRsBYj4+66m8YgRPIIktglL6t7FmgPNRxUNKoQF 8u8PMUedq47SkcHV1xQ53fkjNEW/M5Ihn9Pp9EqceH3URWqoc0Lc6GRY8bg+agpzaZl7 bosc+HDwa1trMaCDC9yS//KvESmwqjl/nRh2TtI3PzYFwnVXoa3gguy4cm8n2PvvR1cn qu+Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=XwDUhWOllpf2vYZWnI3gd5KI6ulGoFXiSSw933c//Ew=; b=E2s8MCVzMw1xzzJCFmf3I9ESm+RqAUJTOhn0ykuBrSWMSow71Ye6s/JWXEjPEdpWMe SkTIWQRj71DDKWn6h/9OtqC0RjagzFNg9Ald/dpvLOVBQz9IFCVzuqi20NGztZRzwa53 1e8KNloJEh65VSp5z3sbjnOPTTuHqb6Bt7eIjiGlRsUIwrY/xcer60bVSXGpL1d4Nxn0 nuHL53q3ntNsM+6ExgLto5yGaCSZvOAKVQMjmL75Rrwf47sNWqXwEdmzxSYHOzt2wzfT Lw20qh75EJ19MOfmCCtVsSMUbq/EF7WWbeTqcC/lVq6/eMzTr+842Bbbus+npmgaEddF 5r7w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y15si2053553otk.125.2020.03.05.02.29.11; Thu, 05 Mar 2020 02:29:23 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726170AbgCEK2t (ORCPT + 99 others); Thu, 5 Mar 2020 05:28:49 -0500 Received: from bhuna.collabora.co.uk ([46.235.227.227]:52222 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725880AbgCEK2s (ORCPT ); Thu, 5 Mar 2020 05:28:48 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: eballetbo) with ESMTPSA id 0CD41296593 From: Enric Balletbo i Serra To: linux-kernel@vger.kernel.org Cc: Collabora Kernel ML , groeck@chromium.org, bleung@chromium.org, dtor@chromium.org, gwendal@chromium.org, Randy Dunlap , Andy Shevchenko , Lee Jones Subject: [PATCH] platform/chrome: Kconfig: Remove CONFIG_ prefix from MFD_CROS_EC section Date: Thu, 5 Mar 2020 11:28:38 +0100 Message-Id: <20200305102838.108967-1-enric.balletbo@collabora.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Remove the CONFIG_ prefix from the select statement for MFD_CROS_EC. Fixes: 2fa2b980e3fe1 ("mfd / platform: cros_ec: Rename config to a better name") Reported-by: Randy Dunlap Signed-off-by: Enric Balletbo i Serra --- drivers/platform/chrome/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/platform/chrome/Kconfig b/drivers/platform/chrome/Kconfig index 15fc8b8a2db8..5ae6c49f553d 100644 --- a/drivers/platform/chrome/Kconfig +++ b/drivers/platform/chrome/Kconfig @@ -7,7 +7,7 @@ config MFD_CROS_EC tristate "Platform support for Chrome hardware (transitional)" select CHROME_PLATFORMS select CROS_EC - select CONFIG_MFD_CROS_EC_DEV + select MFD_CROS_EC_DEV depends on X86 || ARM || ARM64 || COMPILE_TEST help This is a transitional Kconfig option and will be removed after -- 2.25.1