From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 27F933CB2C1; Mon, 30 Mar 2026 13:19:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774876779; cv=none; b=iC6Z+f9vUDJGhnQEI6pFAKCev70FDQpEhE6Rfp5k/d6YW0R5187fvLM7C1qvexzChkHuslwWH2kQ2KVCvrLXByiateEJD5OVu44FuIY89o3kI2zCn9OJDpLDGjzD9wMFapnQOmSTIzczW3UOGWBXU6dp2uB/WFQpYQLSLiksF2A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774876779; c=relaxed/simple; bh=Xt08PXymCs4YwVjpcynOD9Y9BtXPNMqPh7FYH0XBhoM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=jSLUfO0b69FtNA9etvnl0F5C3ppVy/YPwK7/aBk3LeGZKJFBmgwOs2Bz4vEy+uXRKcFvXXBnQ4WvkbKzs9mU+UPTEaYRA3wWu0d/hnOs/by8LWqoN/zAXR/H4i+9JXhRFg4kV71kZnUsnOzKFl6NWhcN6wCgr8j/r4Ztli+jI/c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=tQMNoMlj; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="tQMNoMlj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DCF4BC4CEF7; Mon, 30 Mar 2026 13:19:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1774876778; bh=Xt08PXymCs4YwVjpcynOD9Y9BtXPNMqPh7FYH0XBhoM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=tQMNoMlj1NRnTs9ZoEczeHKRYMoX5a+Z2tQ+dI8ELcy1g1k55rFExNZj/XJUrwar7 syT3h7GHUTt1HRLmW4etNkE+JZlDSQ76EMLxJi+sqnm7V23ANlSN1JjmuPnvi/36Sz W+Qoa8hF1tyo5SxMJWYeOAqcIeqXyclLnV4HabqQ= Date: Mon, 30 Mar 2026 15:19:35 +0200 From: Greg Kroah-Hartman To: Vladimir Oltean Cc: linux-phy@lists.infradead.org, Vinod Koul , Neil Armstrong , dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-can@vger.kernel.org, linux-gpio@vger.kernel.org, linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, linux-pci@vger.kernel.org, linux-renesas-soc@vger.kernel.org, linux-riscv@lists.infradead.org, linux-rockchip@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-scsi@vger.kernel.org, linux-sunxi@lists.linux.dev, linux-tegra@vger.kernel.org, linux-usb@vger.kernel.org, netdev@vger.kernel.org, spacemit@lists.linux.dev, UNGLinuxDriver@microchip.com, Thinh Nguyen , Peter Chen , Frank Li , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam Subject: Re: [PATCH v6 phy-next 03/28] usb: add missing headers transitively included by Message-ID: <2026033028-squint-yield-4c23@gregkh> References: <20260327184706.1600329-1-vladimir.oltean@nxp.com> <20260327184706.1600329-4-vladimir.oltean@nxp.com> Precedence: bulk X-Mailing-List: linux-gpio@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: <20260327184706.1600329-4-vladimir.oltean@nxp.com> On Fri, Mar 27, 2026 at 08:46:41PM +0200, Vladimir Oltean wrote: > The chipidea ci_hdrc_imx driver uses regulator consumer API like > regulator_enable() but does not include . > > The core USB HCD driver calls invalidate_kernel_vmap_range() and > flush_kernel_vmap_range(), but does not include . > > The DWC3 gadget driver calls: > - device_property_present() > - device_property_count_u8() > - device_property_read_u8_array() > but does not include > > The dwc3-generic-plat driver uses of_device_get_match_data() but does > not include . > > In all these cases, the necessary includes were still provided somehow, > directly or indirectly, through . The latter header > wants to drop those includes, so fill in the required headers to avoid > any breakage. > > Signed-off-by: Vladimir Oltean > Acked-by: Thinh Nguyen # dwc3 > --- > Cc: Peter Chen > Cc: Greg Kroah-Hartman > Cc: Frank Li > Cc: Sascha Hauer > Cc: Pengutronix Kernel Team > Cc: Fabio Estevam > Cc: Thinh Nguyen > > v2->v6: none > v1->v2: collect tag > --- > drivers/usb/chipidea/ci_hdrc_imx.c | 1 + > drivers/usb/core/hcd.c | 1 + > drivers/usb/dwc3/dwc3-generic-plat.c | 1 + > drivers/usb/dwc3/gadget.c | 1 + > 4 files changed, 4 insertions(+) Acked-by: Greg Kroah-Hartman