From nobody Sat Nov 23 03:52:08 2024 Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) (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 AE1C11C07EC for ; Fri, 15 Nov 2024 13:26:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.200 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731677202; cv=none; b=YZt4Xd4PFzV5TOXh+2VL4O+yMZmJGKX1hU5V+vEhiAeO+l9M3Dtf90oczKtdbdoN0XiduzD8cWpNLkjwHVeaQ0e+e4hYY7h7lxhI8sbXLGr8i1STtfGLsjcIqGDIaZjnTogScDkxX25Ih9njSoSvsske/Mbg0wWS+GqGhxZv1X8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731677202; c=relaxed/simple; bh=deaieWFiVONpNRlAhKMPRKsF7JDojpQ/DZGVZJ9W5Dg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=u4m+Ow/3zWtwvGvop6N81z9SZQ/KtoD0gk4aFRH1xs+lv3YXmPnZMr2NwrQtn1W7LKLwLs2UpyU0ZNSB/jgcMPQIvCjKz5v1sXYoCwZthZEEX2LejbFcM6jxQt7T9/Y2dqRiVwqJE5DSSsahA/bWUWzNA3ckENKNG4kk/dWFupY= 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=ZynOMVZY; arc=none smtp.client-ip=217.70.183.200 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="ZynOMVZY" Received: by mail.gandi.net (Postfix) with ESMTPA id C31252000C; Fri, 15 Nov 2024 13:26:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1731677199; 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=ZynOMVZYONl3nqhnxXedxdo+koInvhB99WVhHxixqXffEeAOqMJ424OiX/aiy1p9x5xm8l JVHGqAf3YbhcY0aPRuTkG2+ymtVHaaB9C5TjYKTwbyKejt6x+46Ar8GCxyWOr9v9xL5tH3 I/1/Rv25ffbONC7afgOBleYVrRqo8dgfjJyDnilaTFvOmsgO/5YA8Z4lrEu2mZOEuO6nkl uIOiB58q8wem4Y8kZ/JtWbZAkRVijpfXXEBUYdZ94YyR+TuH9QskbRXSwiMjLd4BUT7wqy DROgIlPuE69uoZcGPnPHdMqUHZELPuxyByS5pY73NCSjtWeRNcCF/yfBfjJwNQ== 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 v4 08/10] mtd: rawnand: davinci: Order headers alphabetically Date: Fri, 15 Nov 2024 14:26:29 +0100 Message-ID: <20241115132631.264609-9-bastien.curutchet@bootlin.com> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241115132631.264609-1-bastien.curutchet@bootlin.com> References: <20241115132631.264609-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