From patchwork Sat Aug 20 12:57:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tudor Ambarus X-Patchwork-Id: 12949668 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E67DAC25B08 for ; Sat, 20 Aug 2022 13:01:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1347643AbiHTNBN (ORCPT ); Sat, 20 Aug 2022 09:01:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34668 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1347321AbiHTNAf (ORCPT ); Sat, 20 Aug 2022 09:00:35 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CAB7EFD2C; Sat, 20 Aug 2022 05:59:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1661000356; x=1692536356; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=2axgLz0nRmKkBixXdLu5tutLhhODxz17yBGESR544rg=; b=HMrztd9aruCmBEv9O5nLMPKt+L/pmtSRFz2DJV8EZqMV+riozxuHCUlL O8JpvQ8j9aku+Y1e0pUTfOAAVnEHNUA8j8qfypqFKrkATDZwt/w7Z8oca I9/rlBFwrqUEAPkSLWNzGgFbOLteHy2tsePC85ovk1fwNxjAjnyn86iuH 5UsZj8uVKFnqMgbKPqx78zmdyu007PsMcOQ6KrfEffdycHeKn3e2yL3JQ drv+mZ/uRAnVlOJNnnKpdda65YFzpe03c8+vTPCnvhQVwBsCaiUuBAxtf Vct3bPE+YOEK/NTumNYCGbWQKrLefDSSItbnVKixZDEJk8KVhRifSWe9m g==; X-IronPort-AV: E=Sophos;i="5.93,251,1654585200"; d="scan'208";a="177043102" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa5.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 20 Aug 2022 05:59:15 -0700 Received: from chn-vm-ex02.mchp-main.com (10.10.85.144) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.12; Sat, 20 Aug 2022 05:59:13 -0700 Received: from ROB-ULT-M18064N.mchp-main.com (10.10.115.15) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server id 15.1.2507.12 via Frontend Transport; Sat, 20 Aug 2022 05:59:10 -0700 From: Tudor Ambarus To: , , , CC: , , , , , , , , , Subject: [PATCH 32/33] dmaengine: at_hdmac: Set include entries in alphabetic order Date: Sat, 20 Aug 2022 15:57:16 +0300 Message-ID: <20220820125717.588722-33-tudor.ambarus@microchip.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220820125717.588722-1-tudor.ambarus@microchip.com> References: <20220820125717.588722-1-tudor.ambarus@microchip.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org It's a good practice to set the include entries in alphabetic order. It helps humans to read the code easier. Alphabetic order should also prove that each header is self-contained, i.e. can be included without prerequisites. Signed-off-by: Tudor Ambarus --- drivers/dma/at_hdmac.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c index e35b4b325452..a2b24b9e85ce 100644 --- a/drivers/dma/at_hdmac.c +++ b/drivers/dma/at_hdmac.c @@ -13,16 +13,16 @@ #include #include #include -#include #include +#include #include #include -#include -#include #include #include #include #include +#include +#include #include "dmaengine.h"