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 BDBCCC433F5 for ; Sun, 9 Oct 2022 13:13:11 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id BD474844C2; Sun, 9 Oct 2022 15:13:09 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="n4KRpXkU"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 479D284595; Sun, 9 Oct 2022 15:13:08 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 1DF3682169 for ; Sun, 9 Oct 2022 15:13:06 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id C755FB80C03 for ; Sun, 9 Oct 2022 13:13:05 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60EA8C433C1 for ; Sun, 9 Oct 2022 13:13:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1665321184; bh=a5wUV18wB86PYEeDP/NkFuF+vzTnqe335ObKmP20vgM=; h=From:To:Subject:Date:From; b=n4KRpXkU67vkSx5cC+GRmUTX2KxkzlcBKKsgH477ib0YMltTt1k0x89lRpqtoN7MM FbNSb1t1/2ZyNj7UWFdYD/lcSEpOfEYYzR1FJ1CGkqAOqS+8Sgv3xatSCUtkRPcxWR 6VA674BPnB6RZ/jYANBe16hMmqLJyD/wJE//bDkWITzC38Uf1gla2KtKH7aO60vPlA v5bymlNLZEnuuaM4Y9ZtPljEPqatOd7aY/GX3OATMOiZWyfuoBSlZoEgMozm9Gznep fXB1ach8W49h1i5GKgPhbnk+wmxrCi+ex2YA79zsbZVBoIDB185oSr4fkFN5Zw/jAg EK8khyJWDF5nQ== Received: by pali.im (Postfix) id B2C397C1; Sun, 9 Oct 2022 15:13:01 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: u-boot@lists.denx.de Subject: [PATCH] Nokia RX-51: Remove CONFIG_UBI_SIZE Date: Sun, 9 Oct 2022 15:12:09 +0200 Message-Id: <20221009131209.19606-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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.6 at phobos.denx.de X-Virus-Status: Clean CONFIG_UBI_SIZE option is not used, so remove it. Signed-off-by: Pali Rohár --- include/configs/nokia_rx51.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/configs/nokia_rx51.h b/include/configs/nokia_rx51.h index 97aafc5f7250..a88cfe77d50c 100644 --- a/include/configs/nokia_rx51.h +++ b/include/configs/nokia_rx51.h @@ -31,8 +31,6 @@ #define V_OSCK 26000000 /* Clock output from T2 */ #define V_SCLK (V_OSCK >> 1) -#define CONFIG_UBI_SIZE (512 << 10) - /* * Hardware drivers */ -- 2.20.1