From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6CB0627EFE9; Thu, 4 Sep 2025 20:16:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=156.67.10.101 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757016997; cv=none; b=ZBomvUPzqq1YI8WA50yYPgGl9OlD0nQ8h2QkpL7krAP478w9dUy7HsgMqHVRVduWAH4NSslOMo3K5aixWx4b7Mp/uwi/ewoDU4NnEeopL9sq12Tx1n49+QTVfcxAULWrkisaHImm9IKj5Y0d+ZjuY1XiIOgeZDDr7GHpWN+XlDs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757016997; c=relaxed/simple; bh=NaTwCPeP0XCmkKLldMWdUl5WsGn4236p23M97zl/0RQ=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=em7S4HnLi0dGGgTJ+iq5qkUz4OX9V9nQWlGcXRFwt8LlE3vraiSvzBuLpT61FvdK07Nz2LZMS0cIn2SM6Su5GIEPrg5P7/dqhHiQB1AHvQPqfdqpBeljy/Qjg6PxFNNEJr5e6/c20a4yulj1AFfN/Job27TnRcK3GPTQfSYbnPk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch; spf=pass smtp.mailfrom=lunn.ch; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b=DSXSiLvP; arc=none smtp.client-ip=156.67.10.101 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lunn.ch Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="DSXSiLvP" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=RauOCSG6RxcIShD6tA0o4dLLxDHmAHL3eic8MORcxls=; b=DSXSiLvPiFzMUtA8gmFP3aOOQF QCoXzAJIxMlV1lkBWQrluUREKVD8lsHWk5MoyvyjSAuoI5iaJXQ+a1t7Ojo75t8tYW5rCjS/Xu8Z4 2mhtbpxrXFcbE/ImCXUuCq34O6FfcxSKdih2DPP4U8tgMRcexnkW9Ze/YZeLaC7+hS0A=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1uuGNe-007GYz-LX; Thu, 04 Sep 2025 22:16:26 +0200 Date: Thu, 4 Sep 2025 22:16:26 +0200 From: Andrew Lunn To: Prabhakar Cc: =?iso-8859-1?Q?Cl=E9ment_L=E9ger?= , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Heiner Kallweit , Russell King , Philipp Zabel , Geert Uytterhoeven , Magnus Damm , Wolfram Sang , linux-renesas-soc@vger.kernel.org, netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Biju Das , Fabrizio Castro , Lad Prabhakar Subject: Re: [PATCH net-next v2 3/9] net: pcs: rzn1-miic: Add missing include files Message-ID: <71ce0253-203b-4eef-b3a1-ea9390155c0e@lunn.ch> References: <20250904114204.4148520-1-prabhakar.mahadev-lad.rj@bp.renesas.com> <20250904114204.4148520-4-prabhakar.mahadev-lad.rj@bp.renesas.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250904114204.4148520-4-prabhakar.mahadev-lad.rj@bp.renesas.com> On Thu, Sep 04, 2025 at 12:41:57PM +0100, Prabhakar wrote: > From: Lad Prabhakar > > The pcs-rzn1-miic driver makes use of ARRAY_SIZE(), BIT() and GENMASK() > macros but does not explicitly include the headers where they are > defined. Add the missing and > includes. > > Signed-off-by: Lad Prabhakar Reviewed-by: Andrew Lunn Andrew