From f39560cdda82cd33273171c50f9f1b707ca130cd Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Fri, 29 Nov 2024 16:20:32 +0100 Subject: [PATCH] drivers: usb: udc: fix return api description Replace IN by OUT for udc_ctrl_stage_is_status_out. Signed-off-by: Frederic Pillon --- drivers/usb/udc/udc_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/udc/udc_common.h b/drivers/usb/udc/udc_common.h index 76614ac8c47751..19cad23bd39e10 100644 --- a/drivers/usb/udc/udc_common.h +++ b/drivers/usb/udc/udc_common.h @@ -325,7 +325,7 @@ bool udc_ctrl_stage_is_status_in(const struct device *dev); * * @param[in] dev Pointer to device struct of the driver instance * - * @return true if stage is Data Stage IN + * @return true if stage is Data Stage OUT */ bool udc_ctrl_stage_is_status_out(const struct device *dev);