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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5F99FC433F5 for ; Mon, 25 Oct 2021 22:37:23 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 74F0B604E9 for ; Mon, 25 Oct 2021 22:37:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 74F0B604E9 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id DE47E83383; Tue, 26 Oct 2021 00:37:19 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1635201440; bh=BueEmf7T6fnzGOoUPMihd2CYs4ht0vYy/jA2kdrlghc=; h=From:To:Cc:Subject:Date:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=uiecqQ9SEQwzwMPQOXz424Ri7YVnQ59CgDNLRjt0UCc0sWmeMzH2AlKqm/Z7+Q5Rp NB204OV/0tbmnxqVMkeI2RomlQOlIBaubsfulxl964iR6gr3X0E7X47vwj08yMdR7Q cR0cNe4QNGaFi1rILxZb8KMyaSIFRPCRxrDqQ9krMDXVZPdRH4amYzgLVkS3l0hgRQ ewtK3G86X3jLlkh9quZ4aMRjQUrVW8Hvdi8MY/XFEl/jzqmkH95mdEzDefkBn22r6H Js+3ocVhSxsswE3U+CjhQeOE/um6RtDiQIc9nhN4NPZ8nYUvOGZQgY53VC9d3ehV1A WgNtu5QtX2++w== Received: from tr.lan (ip-89-176-112-137.net.upcbroadband.cz [89.176.112.137]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: marex@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 08582832CD; Tue, 26 Oct 2021 00:37:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1635201438; bh=BueEmf7T6fnzGOoUPMihd2CYs4ht0vYy/jA2kdrlghc=; h=From:To:Cc:Subject:Date:From; b=vdC9M7E0ElaNCYiJfxvZWRBw7FV7RIRddwKEh3h5Rj4bSwzVhKkniubS5SQgMSSfH /+NpZJMVUFskauVdhShrZcz0sKWd/KDKwPi4NaxuVrZxVzmPv9bG2Jlf7p6qePaz3/ pn0WaCEAA5bmndF0cxQ//1B6r849HfuwClXMif/d004iOGv/V5KoFXdikDKNk4vOu8 EWU3NKCFqejSoa2x/kkrUKZU924oF1VNi8LnUD+o+/pHOu73DDYgb5mah2cywwG7Bq PP1OiNrT8G9+0RtDjus3ZcUzyRW+77XvHpXbuxgcoV3YFlbrjD0iYSFBAwyek4x8tP q1Slxx/eIF2sg== From: Marek Vasut To: u-boot@lists.denx.de Cc: Marek Vasut , Lukasz Majewski , Patrice Chotard , Patrick Delaunay Subject: [PATCH] dfu: Sort Kconfig entries alphabetically Date: Tue, 26 Oct 2021 00:37:05 +0200 Message-Id: <20211025223705.16628-1-marex@denx.de> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 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 The DFU_MTD Kconfig entry is in the wrong position, move it into the correct alphabetically sorted position. No functional change. Signed-off-by: Marek Vasut Cc: Lukasz Majewski Cc: Patrice Chotard Cc: Patrick Delaunay --- drivers/dfu/Kconfig | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index 48e41bc2629..8d7f13dcb0b 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -38,6 +38,13 @@ config DFU_MMC help This option enables using DFU to read and write to MMC based storage. +config DFU_MTD + bool "MTD back end for DFU" + depends on DM_MTD + depends on CMD_MTDPARTS + help + This option enables using DFU to read and write to on any MTD device. + config DFU_NAND bool "NAND back end for DFU" depends on CMD_MTDPARTS @@ -72,13 +79,6 @@ config DFU_SF_PART This option enables the support of "part" and "partubi" target in SPI flash DFU back end. -config DFU_MTD - bool "MTD back end for DFU" - depends on DM_MTD - depends on CMD_MTDPARTS - help - This option enables using DFU to read and write to on any MTD device. - config DFU_VIRT bool "VIRTUAL flash back end for DFU" help -- 2.33.0