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 31838C05027 for ; Tue, 7 Feb 2023 00:37:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229847AbjBGAg7 (ORCPT ); Mon, 6 Feb 2023 19:36:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37492 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229447AbjBGAg5 (ORCPT ); Mon, 6 Feb 2023 19:36:57 -0500 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 948A9166C5; Mon, 6 Feb 2023 16:36:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675730216; x=1707266216; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=R+jmyc8Yo+yZhgpXm5gP0gSlIk1nuY366JOKTziSiOQ=; b=nctibp8mXPoL+mwAjFvBQ4ppbtm4ReUKZEZIUJNM85cmxQCVXA9dptIh oCjD+8u9pz58+Vfkzj6zyDvjgbeRyxu0k9b0p0w24ZXSHYu76iOIYRg1Q QjiqUW6Oj8Fab0FcsOu3lun3hekjc5VpQs1wzBVBWlI09pqimMHA3fohG OjxuBYb1D03OBAG6OatMUH3s6pfbNgIDEyNjYYR4XpyVcwOrKito3pUG0 CW9vcfeJAgScE7S/s/ouxl0Wqrp8Ug1s9NtPa3JfnXHPdF9i6+FUU57EC 8XbFjEzvJaNZqLLPDqQeDDIbQa5mVbHZPrQxWXovF7FlzjtXO/P6Wc2vr A==; X-IronPort-AV: E=McAfee;i="6500,9779,10613"; a="309693742" X-IronPort-AV: E=Sophos;i="5.97,276,1669104000"; d="scan'208";a="309693742" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Feb 2023 16:36:56 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10613"; a="790605344" X-IronPort-AV: E=Sophos;i="5.97,276,1669104000"; d="scan'208";a="790605344" Received: from zhoufuro-mobl.ccr.corp.intel.com (HELO [10.254.211.142]) ([10.254.211.142]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Feb 2023 16:36:50 -0800 Message-ID: <581353bc-cc2c-295b-1f9a-04bcf705261b@linux.intel.com> Date: Tue, 7 Feb 2023 08:36:47 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCHv2 2/4] wiegand: add Wiegand bus driver To: Greg KH Cc: =?UTF-8?Q?Martin_Za=c5=a5ovi=c4=8d?= , linux-kernel@vger.kernel.org, robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org, martin.petersen@oracle.com, beanhuo@micron.com, arnd@arndb.de, avri.altman@wdc.com, iwona.winiarska@intel.com, fmdefrancesco@gmail.com, dipenp@nvidia.com, ogabbay@kernel.org, bvanassche@acm.org, mathieu.poirier@linaro.org, yangyicong@hisilicon.com, dan.j.williams@intel.com, devicetree@vger.kernel.org, linus.walleij@linaro.org References: <20230202143305.21789-1-m.zatovic1@gmail.com> <20230202143305.21789-3-m.zatovic1@gmail.com> Content-Language: en-US From: Zhou Furong In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/2/6 18:26, Greg KH wrote: > On Mon, Feb 06, 2023 at 05:49:44PM +0800, Zhou Furong wrote: >> >>>> + >>>> +#include >>>> +#include >>>> +#include >>>> +#include >>>> +#include >>>> +#include >>>> +#include >>>> +#include >>>> +#include >>>> + >> >> please order headers > > Why? What order? For what gain > If all header file ordered in alphabet, it will be easy to find if a header file has been included or not when header file list is long.