From patchwork Thu Nov 17 15:51:05 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 13046994 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 0FA9BC4332F for ; Thu, 17 Nov 2022 15:51:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233202AbiKQPvB (ORCPT ); Thu, 17 Nov 2022 10:51:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58266 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232330AbiKQPvA (ORCPT ); Thu, 17 Nov 2022 10:51:00 -0500 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E7BAA701A3; Thu, 17 Nov 2022 07:50:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1668700260; x=1700236260; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=cYyJRRqnn9LuozWNUU94VNSroJbrg0Ie5N7Qf+vQFFo=; b=i07X19J3FLnKXHXXo2G24rT3ifV8NOgsOb3hlsjIm/VJ5m5VV3FBXQeD jpwSmhHHMiBc7ekkzuoRZaZ6l221UGRs3loAKzrVJCfPuXHIaOfHSOg0J aB5vJR1GtsZFTzNlHWBRn+PTwzr+yfVbzI4Si6gSdorKYo768zg4BDuqX FDhv8merY8So21tUclfQEX/2RP3AJ+4ZShZf/UpTdgqAn4ScRfMROKmsH jaS+WjFPE532tJtHqT9pX2VBHeh3fODiXuIwhAAayCHb0bS+UByTDZ1/r wWZbo/qW59OCkTylgff+d2SLFcbTjMpH2Jtc1X+fFEIqAybM48JqwOt61 g==; X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="312898971" X-IronPort-AV: E=Sophos;i="5.96,171,1665471600"; d="scan'208";a="312898971" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2022 07:50:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10534"; a="968919504" X-IronPort-AV: E=Sophos;i="5.96,171,1665471600"; d="scan'208";a="968919504" Received: from black.fi.intel.com ([10.237.72.28]) by fmsmga005.fm.intel.com with ESMTP; 17 Nov 2022 07:50:48 -0800 Received: by black.fi.intel.com (Postfix, from userid 1003) id 0EEEC385; Thu, 17 Nov 2022 17:51:14 +0200 (EET) From: Andy Shevchenko To: Andy Shevchenko , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Michael Turquette , Stephen Boyd Subject: [PATCH v1 3/3] clk: fractional-divider: Regroup inclusions Date: Thu, 17 Nov 2022 17:51:05 +0200 Message-Id: <20221117155105.1486-3-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221117155105.1486-1-andriy.shevchenko@linux.intel.com> References: <20221117155105.1486-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org For the better maintenance regroup inclusions as follows: - split CCF related headers in its own group - order groups from generic to particular - sort each group alphabetically Signed-off-by: Andy Shevchenko --- drivers/clk/clk-fractional-divider.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/clk/clk-fractional-divider.c b/drivers/clk/clk-fractional-divider.c index b6b52b79d671..ebd007f5ce5d 100644 --- a/drivers/clk/clk-fractional-divider.c +++ b/drivers/clk/clk-fractional-divider.c @@ -40,12 +40,14 @@ #include #include +#include #include #include #include -#include -#include #include +#include + +#include #include "clk-fractional-divider.h"