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 940E9C636CC for ; Tue, 7 Feb 2023 06:09:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229850AbjBGGJF (ORCPT ); Tue, 7 Feb 2023 01:09:05 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35152 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229743AbjBGGJD (ORCPT ); Tue, 7 Feb 2023 01:09:03 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C3BA52E0F9; Mon, 6 Feb 2023 22:08:58 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 4339B611D2; Tue, 7 Feb 2023 06:08:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 177D3C433EF; Tue, 7 Feb 2023 06:08:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1675750137; bh=4QW7Z9hDWBfSp+o7tMeI+umOx2kSv/pt7HuJMchSsUo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=M5OyJ92Tm8fh6AFzLtGy1m4jzHyT8laR3FYpuIEF1SNedo1qYoU8TWwQFA/Vv7Np3 q0kIuWSq8DbQ/6pSfhhIIBgUexFvWX1SLX4Ih9JEbtq4KbS0BvRV42pf8w2OB/y7EK KJG+lcMZyTKfACAWQ6GjUbPVROVmFEoypwIo4xj0= Date: Tue, 7 Feb 2023 07:08:54 +0100 From: Greg KH To: Zhou Furong Cc: Martin =?utf-8?B?WmHFpW92acSN?= , 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 Subject: Re: [PATCHv2 2/4] wiegand: add Wiegand bus driver Message-ID: References: <20230202143305.21789-1-m.zatovic1@gmail.com> <20230202143305.21789-3-m.zatovic1@gmail.com> <581353bc-cc2c-295b-1f9a-04bcf705261b@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <581353bc-cc2c-295b-1f9a-04bcf705261b@linux.intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 07, 2023 at 08:36:47AM +0800, Zhou Furong wrote: > > > 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. That's what search in your editor is for :) This is not a real problem with this code, sorry. thanks, greg k-h