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 B1CF1C3DA7A for ; Fri, 6 Jan 2023 02:44:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230376AbjAFCn7 (ORCPT ); Thu, 5 Jan 2023 21:43:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48240 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229450AbjAFCn5 (ORCPT ); Thu, 5 Jan 2023 21:43:57 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7416765AD0 for ; Thu, 5 Jan 2023 18:43:56 -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 0DBB661CD1 for ; Fri, 6 Jan 2023 02:43:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4FC51C433EF; Fri, 6 Jan 2023 02:43:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1672973035; bh=WmNNxGj4cSqyKU6i+FHCVSPDnmXabZA7XDWvz/rOo6A=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=SJs6dY8jbeR1bjxa30qfx/BEjhaVK+OQAGCOAwaqhxcHZBmbWNTx2f4uUnlV57H5L qxVfOW0d49MABV71dnbiieb3NVP3ZYNy4xjrEd5Fcf9HgwJMDVB1Ki9Hgty9eohKNg y3WgEOIOXFUxPdFw5kk1U3c6ELo90MTbK7MkND3o= Date: Thu, 5 Jan 2023 18:43:54 -0800 From: Andrew Morton To: Andy Shevchenko Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH v1 1/1] util_macros.h: Add missing insclusion Message-Id: <20230105184354.ea9a981aa8c76bbfd6a2c212@linux-foundation.org> In-Reply-To: <20230103121937.32085-1-andriy.shevchenko@linux.intel.com> References: <20230103121937.32085-1-andriy.shevchenko@linux.intel.com> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 3 Jan 2023 14:19:37 +0200 Andy Shevchenko wrote: > The header is the direct user of definitions from the math.h, > include it. > > ... > > --- a/include/linux/util_macros.h > +++ b/include/linux/util_macros.h > @@ -2,6 +2,8 @@ > #ifndef _LINUX_HELPER_MACROS_H_ > #define _LINUX_HELPER_MACROS_H_ > > +#include > + > #define __find_closest(x, a, as, op) \ > ({ \ > typeof(as) __fc_i, __fc_as = (as) - 1; \ Does this fix any known build errors, or was it an I-noticed-this thing?