From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2B9EFC433F5 for ; Tue, 14 Dec 2021 18:37:22 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 371B88203C; Tue, 14 Dec 2021 19:37:16 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=konsulko.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 37B8182FD0; Tue, 14 Dec 2021 19:36:55 +0100 (CET) Received: from mail-qv1-f49.google.com (mail-qv1-f49.google.com [209.85.219.49]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id BC8B081761 for ; Tue, 14 Dec 2021 19:36:46 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=konsulko.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=tom.rini@gmail.com Received: by mail-qv1-f49.google.com with SMTP id gu12so18095867qvb.6 for ; Tue, 14 Dec 2021 10:36:46 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=naWNrxFlKZDxYK9YKFWzRHlT50FyVssO0yYhmaDEa3k=; b=UjivwLlaixhPygwgxr9Az547n8H2mIcfYhMgpEGbHpNOGEA4rfy+qWD87MHsfs6M9U Rd6FXNUaduCfRQO6qDuruhgeV9A9tlE9LJBTwdOW4n0nKVgqKJ1GSImCSzhLYzv+TTzA BVrCfP2lWI//CmQ/7RnGwHUj1dMVb+/DWdtBIws2+FtYzZEZQgBWOlYI06bmDqcRXP0W 6Bqbvr+Bl0aat+VWIyMdU7GmpRRJTggEFICxQDyn1nZ1jNk3WO+DEYhTjoVJPeyK4jNP s7KQWGDCTeNLQl1dWjTWqtWegu1Rpz1czARSZWwpwxxHJvaThiFHiGzrlxyU2lB2YglS AyAA== X-Gm-Message-State: AOAM533paaZWIh9rWpF9HNz9OVl8susxLkYcVJC0EzrcDKpAcZtEXCSx q1tY24TNQeDEIjsxuMyQC7dBL7Sxdg== X-Google-Smtp-Source: ABdhPJy4ZFve0Au+HA5tqpbjc8Z3B/CS5kzY8txMqH+qD8SiwjNAH18+PyIRe5H7BAeP0RNSNGCr2Q== X-Received: by 2002:a05:6214:27e3:: with SMTP id jt3mr7356768qvb.44.1639507005382; Tue, 14 Dec 2021 10:36:45 -0800 (PST) Received: from bill-the-cat.lan (2603-6081-7b01-cbda-310c-c3b6-cb4e-9c9e.res6.spectrum.com. [2603:6081:7b01:cbda:310c:c3b6:cb4e:9c9e]) by smtp.gmail.com with ESMTPSA id b11sm498795qtx.85.2021.12.14.10.36.45 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Dec 2021 10:36:45 -0800 (PST) From: Tom Rini To: u-boot@lists.denx.de Subject: [PATCH 3/9] Convert CONFIG_ARCH_MAP_SYSMEM to Kconfig Date: Tue, 14 Dec 2021 13:36:35 -0500 Message-Id: <20211214183641.1877371-3-trini@konsulko.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211214183641.1877371-1-trini@konsulko.com> References: <20211214183641.1877371-1-trini@konsulko.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean This converts the following to Kconfig: CONFIG_ARCH_MAP_SYSMEM Signed-off-by: Tom Rini --- arch/Kconfig | 4 ++++ arch/sandbox/Kconfig | 3 --- include/configs/adp-ae3xx.h | 2 -- include/configs/adp-ag101p.h | 2 -- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/arch/Kconfig b/arch/Kconfig index 4e384d1c94ac..0133be9c2174 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -1,3 +1,7 @@ +config ARCH_MAP_SYSMEM + depends on SANDBOX || NDS32 + def_bool y + config CREATE_ARCH_SYMLINK bool diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig index 7cdbaefb119a..477c51960da2 100644 --- a/arch/sandbox/Kconfig +++ b/arch/sandbox/Kconfig @@ -1,9 +1,6 @@ menu "Sandbox architecture" depends on SANDBOX -config ARCH_MAP_SYSMEM - def_bool y - config SYS_ARCH default "sandbox" diff --git a/include/configs/adp-ae3xx.h b/include/configs/adp-ae3xx.h index 973033d6b4d5..d583733971aa 100644 --- a/include/configs/adp-ae3xx.h +++ b/include/configs/adp-ae3xx.h @@ -17,8 +17,6 @@ #define CONFIG_SKIP_TRUNOFF_WATCHDOG -#define CONFIG_ARCH_MAP_SYSMEM - #define CONFIG_BOOTP_SERVERIP #ifdef CONFIG_SKIP_LOWLEVEL_INIT diff --git a/include/configs/adp-ag101p.h b/include/configs/adp-ag101p.h index f533ada73f47..f2c0a0002d63 100644 --- a/include/configs/adp-ag101p.h +++ b/include/configs/adp-ag101p.h @@ -15,8 +15,6 @@ */ #define CONFIG_USE_INTERRUPT -#define CONFIG_ARCH_MAP_SYSMEM - #define CONFIG_BOOTP_SERVERIP #ifndef CONFIG_SKIP_LOWLEVEL_INIT -- 2.25.1