From nobody Fri Nov 7 13:29:09 2025 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=pass(p=none dis=none) header.from=nongnu.org ARC-Seal: i=1; a=rsa-sha256; t=1609413808; cv=none; d=zohomail.com; s=zohoarc; b=L/Av2/nKY4hN7yoigNled5lct53rk/RU0qJ2fddeSFzQSU9i1ilsJBVlz8SuTE9eavYqxLN6k7KuC2Yo3yQ17606k3rBwKHjWwo9KZMYYnkmTfEvcBcGUZKviyDxUdKZJhjGAaxt3TQf4yh3G4CX/ItGSRyEsa0IXww8za3SW+s= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1609413808; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=5tgAWsMAVpUf4vENyT3H7k2MxihUjCzWlwIYBEOqVlQ=; b=L3BWAxnMIRZiWo9XF06XpP46zgvXUnmP2cBmWVKdYCH52CQJf6a1ebDjsVXKBxLPZbARPleIK13XB4WQp9g/6fFZNN2iv2GAwW2nIM52fXYpRP5UrTWGb8ZgN49Uj/8r71OnPes9wZkRNVIQuzM8J4MMQi8IeYI0xXPrWP4OM+A= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1609413808969958.2689457338521; Thu, 31 Dec 2020 03:23:28 -0800 (PST) Received: from localhost ([::1]:59474 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kuw3C-0004f7-Rs for importer@patchew.org; Thu, 31 Dec 2020 06:23:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:56732) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuw0X-0001aA-Ci; Thu, 31 Dec 2020 06:20:41 -0500 Received: from zero.eik.bme.hu ([152.66.115.2]:48358) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuw0V-0003hU-UB; Thu, 31 Dec 2020 06:20:41 -0500 Received: from zero.eik.bme.hu (blah.eik.bme.hu [152.66.115.182]) by localhost (Postfix) with SMTP id DA6067470E3; Thu, 31 Dec 2020 12:20:37 +0100 (CET) Received: by zero.eik.bme.hu (Postfix, from userid 432) id 35FEF7470EF; Thu, 31 Dec 2020 12:20:30 +0100 (CET) Message-Id: In-Reply-To: References: Date: Fri, 25 Dec 2020 21:12:15 +0100 Subject: [PATCH v2 2/3] sam460ex: Remove FDT_PPC dependency from KConfig Date: Thu, 31 Dec 2020 12:11:55 +0100 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable To: qemu-devel@nongnu.org, qemu-ppc@nongnu.org X-Spam-Probability: 9% Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=152.66.115.2; envelope-from=balaton@eik.bme.hu; helo=zero.eik.bme.hu X-Spam_score_int: 3 X-Spam_score: 0.3 X-Spam_bar: / X-Spam_report: (0.3 / 5.0 requ) BAYES_00=-1.9, DATE_IN_PAST_96_XX=3.405, INVALID_DATE=1.096, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , Mark Cave-Ayland , Guenter Roeck , David Gibson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Reply-to: BALATON Zoltan From: BALATON Zoltan via Content-Type: text/plain; charset="utf-8" Dependency on FDT_PPC was added in commit b0048f76095 ("hw/ppc/Kconfig: Only select FDT helper for machines using it") but it does not seem to be really necessary so remove it again. Signed-off-by: BALATON Zoltan Reviewed-by: Philippe Mathieu-Daud=C3=A9 --- v2: Do not remove PPC405, reworded commit message hw/ppc/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index 8548f42b0d..f1e1be208e 100644 --- a/hw/ppc/Kconfig +++ b/hw/ppc/Kconfig @@ -64,7 +64,6 @@ config SAM460EX select SMBUS_EEPROM select USB_EHCI_SYSBUS select USB_OHCI - select FDT_PPC =20 config PREP bool --=20 2.21.3