From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934899AbcKOKvs (ORCPT ); Tue, 15 Nov 2016 05:51:48 -0500 Received: from terminus.zytor.com ([198.137.202.10]:51454 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753379AbcKOKvn (ORCPT ); Tue, 15 Nov 2016 05:51:43 -0500 Date: Tue, 15 Nov 2016 02:50:14 -0800 From: tip-bot for Lukas Wunner Message-ID: Cc: peterz@infradead.org, hpa@zytor.com, mingo@kernel.org, andreas.noever@gmail.com, matt@codeblueprint.co.uk, reverser@put.as, ard.biesheuvel@linaro.org, tglx@linutronix.de, lukas@wunner.de, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, pjones@redhat.com Reply-To: linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, lukas@wunner.de, pjones@redhat.com, ard.biesheuvel@linaro.org, reverser@put.as, tglx@linutronix.de, hpa@zytor.com, matt@codeblueprint.co.uk, mingo@kernel.org, andreas.noever@gmail.com, peterz@infradead.org In-Reply-To: <20161114151033.GA10141@wunner.de> References: <20161114151033.GA10141@wunner.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:efi/core] thunderbolt, efi: Fix Kconfig dependencies Git-Commit-ID: 79f9cd35b05e3e91ccf9b4038a8b74b9362b5da7 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 79f9cd35b05e3e91ccf9b4038a8b74b9362b5da7 Gitweb: http://git.kernel.org/tip/79f9cd35b05e3e91ccf9b4038a8b74b9362b5da7 Author: Lukas Wunner AuthorDate: Mon, 14 Nov 2016 16:10:33 +0100 Committer: Ingo Molnar CommitDate: Tue, 15 Nov 2016 08:33:22 +0100 thunderbolt, efi: Fix Kconfig dependencies Fix this EFI build failure on certain (rand)configs: drivers/firmware/efi/apple-properties.c:149:9: error: implicit declaration of function ???efi_get_device_by_path??? [-Werror=implicit-function-declaration] which is due to: warning: (THUNDERBOLT) selects APPLE_PROPERTIES which has unmet direct dependencies (EFI && EFI_STUB && X86) Signed-off-by: Lukas Wunner Cc: Andreas Noever Cc: Ard Biesheuvel Cc: Linus Torvalds Cc: Matt Fleming Cc: Pedro Vilaça Cc: Peter Jones Cc: Peter Zijlstra Cc: Pierre Moreau [MacBookPro11,3] Cc: Thomas Gleixner Cc: linux-efi@vger.kernel.org Link: http://lkml.kernel.org/r/20161114151033.GA10141@wunner.de Signed-off-by: Ingo Molnar --- drivers/thunderbolt/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thunderbolt/Kconfig b/drivers/thunderbolt/Kconfig index 0056df7..bb0318c 100644 --- a/drivers/thunderbolt/Kconfig +++ b/drivers/thunderbolt/Kconfig @@ -1,7 +1,7 @@ menuconfig THUNDERBOLT tristate "Thunderbolt support for Apple devices" depends on PCI - select APPLE_PROPERTIES + select APPLE_PROPERTIES if EFI_STUB select CRC32 help Cactus Ridge Thunderbolt Controller driver