From nobody Sat Nov 23 11:59:55 2024 Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2AEF31F8F17 for ; Wed, 13 Nov 2024 09:49:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.198 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731491389; cv=none; b=HY6VRKn9Vb69u+rLlL/EY7sTB9mYgx+ca2ysM4fjvkrxw+lamzfha+/l5DatixNl/QV/r8idBtiAAXpj3cXeTAtlN9fpiL6YxkpAdNx1z5VHAHOvSWwaQTBA3sKTNgrvXb3fzdwpvL/whLT70r2pMdwvim7J26+Mjy7DXtmXL1g= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731491389; c=relaxed/simple; bh=deaieWFiVONpNRlAhKMPRKsF7JDojpQ/DZGVZJ9W5Dg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Atzq7uTcoBiaLvWLeEqj1hL0seLKP6zRCYGGSLHpHMdsosmiWjTcJR7w1ISrRSxYIeSMkHiAPp05CBTtHYiCfh5Tp37EwAPsd/tappm9phCntHB+hNTLwBLEyxRwi9dDcd7dGwWub0F+KEACk5PjS1tPw0Bjni1c3ZCEfijoMm0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=G6fus04p; arc=none smtp.client-ip=217.70.183.198 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="G6fus04p" Received: by mail.gandi.net (Postfix) with ESMTPA id B537CC0015; Wed, 13 Nov 2024 09:49:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1731491385; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=khZM5fFii6r1q+Z9uZi3Zgk6G9+0lCTuTox0qCES4xo=; b=G6fus04pgyae3nSlDlFWrBF12kmjcAp2kkEukWQwgsFLZV0EYdZxH/fxAQw+TR+r/UN9eo IJm6A0JrbjU7J7KwoGHOgLJJ7Lx83NzMzZtu0n7sDis7qc6E67hrTgoQRpjX4QreskI9MU pzANRQZyMR2dorrEPZniD4VCfSBj7TgyJwIRp6+CNaGZ0dsjDQTFKBBp8AZ2bYi4iLOcZt VggKgwFoeE93a+1xKcTtgwnMvbrD19exqMCmTjg8/1BU9KNrzfQdBzg6jIYSk1jh9Ge56A YjverQ9YVOP2ZXcLVvCoKcXVK5deWTOf265qPcTYCnNN9GTR3jHyY4qiVrtmTg== From: Bastien Curutchet To: Santosh Shilimkar , Krzysztof Kozlowski , Miquel Raynal , Richard Weinberger , Vignesh Raghavendra Cc: linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org, Thomas Petazzoni , Herve Codina , Christopher Cordahi , Bastien Curutchet Subject: [PATCH v3 5/7] mtd: rawnand: davinci: Order headers alphabetically Date: Wed, 13 Nov 2024 10:49:36 +0100 Message-ID: <20241113094938.44817-6-bastien.curutchet@bootlin.com> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241113094938.44817-1-bastien.curutchet@bootlin.com> References: <20241113094938.44817-1-bastien.curutchet@bootlin.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-GND-Sasl: bastien.curutchet@bootlin.com Content-Type: text/plain; charset="utf-8" Order headers alphabetically for better readability. Signed-off-by: Bastien Curutchet --- drivers/mtd/nand/raw/davinci_nand.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/mtd/nand/raw/davinci_nand.c b/drivers/mtd/nand/raw/dav= inci_nand.c index 392678143a36..3c0efbdd789e 100644 --- a/drivers/mtd/nand/raw/davinci_nand.c +++ b/drivers/mtd/nand/raw/davinci_nand.c @@ -10,15 +10,15 @@ * Dirk Behme */ =20 -#include -#include -#include #include #include +#include +#include #include #include -#include #include +#include +#include =20 #define NRCSR_OFFSET 0x00 #define NANDFCR_OFFSET 0x60 --=20 2.47.0