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 AE508C6FD1F for ; Fri, 10 Mar 2023 16:51:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230232AbjCJQvR (ORCPT ); Fri, 10 Mar 2023 11:51:17 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38512 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230458AbjCJQuc (ORCPT ); Fri, 10 Mar 2023 11:50:32 -0500 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BEFC713480C; Fri, 10 Mar 2023 08:47:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678466860; x=1710002860; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=GUE2klioiCUZxp/OgoQzXCq9RQkFrhiLvLdVx5qpQ9s=; b=XgHqTARj0TPabh2T/N51XATBtqbwxJw02v9x8cGVucBc5C1U+a3KoXaL lt7UND59Uet6n7qFptwB8k0/Vq4Vsr6TduxaS4uVUMVrT9gqahJJfQrfm 4FppnYTVdUrPIWbsRl2gWfkZUMdmhRsKDU1CCzDYbQPW7pYMRkjv33USC HjwATU3GjVlcrLooi99lUYvfpOwvSrAWBF2ekXHeI/IYg4TSGGxsJZEPb V7Cb4KIipIHK45GA6oxhe7X4hJe1AY6/ahyUDCOiGF5oSsKHz+2q1JVll dhZKi6+mBER2mGQcjGMjAVIpx3Gr+sW+oq9FWI9DVapFpWhRvyxQJXEQw A==; X-IronPort-AV: E=McAfee;i="6500,9779,10645"; a="320621153" X-IronPort-AV: E=Sophos;i="5.98,250,1673942400"; d="scan'208";a="320621153" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Mar 2023 08:45:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10645"; a="746778640" X-IronPort-AV: E=Sophos;i="5.98,250,1673942400"; d="scan'208";a="746778640" Received: from black.fi.intel.com ([10.237.72.28]) by fmsmga004.fm.intel.com with ESMTP; 10 Mar 2023 08:45:11 -0800 Received: by black.fi.intel.com (Postfix, from userid 1003) id 6D93C59E; Fri, 10 Mar 2023 18:45:53 +0200 (EET) From: Andy Shevchenko To: Andy Shevchenko , Jens Axboe , Greg Kroah-Hartman , linux-block@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 9/9] pktcdvd: Sort headers Date: Fri, 10 Mar 2023 18:45:49 +0200 Message-Id: <20230310164549.22133-10-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230310164549.22133-1-andriy.shevchenko@linux.intel.com> References: <20230310164549.22133-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Sort the headers in alphabetic order in order to ease the maintenance for this part. Signed-off-by: Andy Shevchenko Reviewed-by: Greg Kroah-Hartman --- drivers/block/pktcdvd.c | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/drivers/block/pktcdvd.c b/drivers/block/pktcdvd.c index 22048739a245..93597bde9c33 100644 --- a/drivers/block/pktcdvd.c +++ b/drivers/block/pktcdvd.c @@ -46,29 +46,30 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt -#include -#include -#include -#include +#include #include -#include +#include +#include #include -#include #include -#include -#include -#include #include +#include +#include +#include +#include #include +#include +#include +#include +#include #include -#include +#include +#include +#include + +#include #include #include -#include -#include -#include -#include -#include #include -- 2.39.1