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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 10543CA0EF1 for ; Tue, 12 Sep 2023 15:07:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236277AbjILPIB (ORCPT ); Tue, 12 Sep 2023 11:08:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53910 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236257AbjILPHt (ORCPT ); Tue, 12 Sep 2023 11:07:49 -0400 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.20]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C40E3115 for ; Tue, 12 Sep 2023 08:07:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1694531264; x=1726067264; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=AAI8dJyBAOyZzm1xCF6S/H+c+/wyOvQByZZ02Ke5QYs=; b=jMneXzLskEJfM0Fkiz9mvF3e51vCsvJS/lR+k6VLAlbFghIwNPMutAJM mD0asd0+n/9jWWlR8SzE8ql4RGuev747ql480X8K5SansY/QUxHrKj5qB shYKZY7Ny+Xf/2YnoaYtxHVqMeF6g3/36j5rmBH74Z3nIuuFgTgGpmWrO kWCQ43CFvIBWMFbaVLUEKPN/JV7dHDtv0cZRXJNP89+l4hK+PvA2cCgj+ Z4OR6YItEjbWjX43AWa0oPFUXI1XGW6EatYI8pyVrhxSTx2zoP7SS27Nz u+1hAZ/xnpIdpZCgtoyu5txENMmO8f+FfxgcpcjqHGeuaGNhKQm5a+4m+ w==; X-IronPort-AV: E=McAfee;i="6600,9927,10831"; a="368662550" X-IronPort-AV: E=Sophos;i="6.02,139,1688454000"; d="scan'208";a="368662550" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Sep 2023 08:05:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10831"; a="773065028" X-IronPort-AV: E=Sophos;i="6.02,139,1688454000"; d="scan'208";a="773065028" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga008.jf.intel.com with ESMTP; 12 Sep 2023 08:05:55 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 96B1FBE1; Tue, 12 Sep 2023 18:05:54 +0300 (EEST) From: Andy Shevchenko To: Andy Shevchenko , linux-kernel@vger.kernel.org Cc: Luis Chamberlain Subject: [PATCH v1 5/6] params: Sort headers Date: Tue, 12 Sep 2023 18:05:50 +0300 Message-Id: <20230912150551.401537-5-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.40.0.1.gaa8946217a0b In-Reply-To: <20230912150551.401537-1-andriy.shevchenko@linux.intel.com> References: <20230912150551.401537-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 --- kernel/params.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kernel/params.c b/kernel/params.c index fd11c731475f..bcd535200c31 100644 --- a/kernel/params.c +++ b/kernel/params.c @@ -3,18 +3,18 @@ Copyright (C) 2001 Rusty Russell. */ +#include +#include +#include +#include #include #include -#include -#include #include #include -#include -#include #include -#include -#include #include +#include +#include #ifdef CONFIG_SYSFS /* Protects all built-in parameters, modules use their own param_lock */ -- 2.40.0.1.gaa8946217a0b