From patchwork Wed Feb 3 21:54:36 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 12065427 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 19BDCC433E6 for ; Wed, 3 Feb 2021 21:55:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C5F6764E4E for ; Wed, 3 Feb 2021 21:55:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231868AbhBCVzZ (ORCPT ); Wed, 3 Feb 2021 16:55:25 -0500 Received: from mail-40136.protonmail.ch ([185.70.40.136]:10997 "EHLO mail-40136.protonmail.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231467AbhBCVzY (ORCPT ); Wed, 3 Feb 2021 16:55:24 -0500 Date: Wed, 03 Feb 2021 21:54:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1612389281; bh=T3ugBCX4TFAf26kXNuKtpVS5/dvFV1Zc5GJK+FnEgRg=; h=Date:To:From:Reply-To:Subject:In-Reply-To:References:From; b=djtSMata//yzU7U6mllcqdQ9E7wJYuOPmWnv3lNFe/OIAGt2Fa3Pao8u1GVcUoxOL ifNzIdhhSYieosh4Cd1XxLS8/oOj4h9KwlB+G6SF9Fa39juOcRou8QG1BeeWnEml0f EbRFxbweLw1/ybQIiliDOSg/7l75EKr9TswEcc5Q= To: platform-driver-x86@vger.kernel.org, Hans de Goede , Mark Gross , Ike Panhc , Andy Shevchenko From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= Reply-To: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= Subject: [PATCH v3 04/29] platform/x86: ideapad-laptop: sort includes lexicographically Message-ID: <20210203215403.290792-5-pobrn@protonmail.com> In-Reply-To: <20210203215403.290792-1-pobrn@protonmail.com> References: <20210203215403.290792-1-pobrn@protonmail.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: platform-driver-x86@vger.kernel.org Managing includes is easier when they are sorted, so sort them lexicographically. Signed-off-by: Barnabás Pőcze Reviewed-by: Andy Shevchenko diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c index 6c1ed5153a37..e3016c18e88e 100644 --- a/drivers/platform/x86/ideapad-laptop.c +++ b/drivers/platform/x86/ideapad-laptop.c @@ -8,23 +8,24 @@ #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 #define IDEAPAD_RFKILL_DEV_NUM (3)