On Fri, 2026-07-17 at 17:49 +0200, Johan Hovold wrote:
> A recent change enabling compile testing of a Freescale dual-role
> controller indirectly enabled a USB PHY driver to be built. That driver
> in turn is missing a bunch of static keywords which results in warnings
> like:
>
> drivers/usb/phy/phy-fsl-usb.c:105:5: error: no previous prototype for
> 'write_ulpi' [-
> Werror=missing-prototypes]
> 105 | int write_ulpi(u8 addr, u8 data)
> | ^~~~~~~~~~
>
> which consequently breaks -Werror builds.
>
> Add the missing static keywords.
>
> Fixes: 0807c500a1a6 ("USB: add Freescale USB OTG Transceiver driver")
> Cc: [email protected] # 3.0
Add [email protected]
> Reported-by: Mark Brown <[email protected]>
> Link:
> https://lore.kernel.org/r/[email protected]
> Signed-off-by: Johan Hovold <[email protected]>
Reviewed-by: Manuel Ebner <[email protected]>
Thanks
Manuel
> ---
> drivers/usb/phy/phy-fsl-usb.c | 52 +++++++++++++++++------------------
> drivers/usb/phy/phy-fsl-usb.h | 6 ++--
> 2 files changed, 29 insertions(+), 29 deletions(-)
>
> [...]