A function has a different name between their prototype and its kernel-doc markup. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@xxxxxxxxxx> --- drivers/hsi/hsi_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hsi/hsi_core.c b/drivers/hsi/hsi_core.c index 47f0208aa7c3..c3fb5beb846e 100644 --- a/drivers/hsi/hsi_core.c +++ b/drivers/hsi/hsi_core.c @@ -335,41 +335,41 @@ static int hsi_remove_port(struct device *dev, void *data __maybe_unused) device_for_each_child(dev, NULL, hsi_remove_client); device_unregister(dev); return 0; } static void hsi_controller_release(struct device *dev) { struct hsi_controller *hsi = to_hsi_controller(dev); kfree(hsi->port); kfree(hsi); } static void hsi_port_release(struct device *dev) { kfree(to_hsi_port(dev)); } /** - * hsi_unregister_port - Unregister an HSI port + * hsi_port_unregister_clients - Unregister an HSI port * @port: The HSI port to unregister */ void hsi_port_unregister_clients(struct hsi_port *port) { device_for_each_child(&port->device, NULL, hsi_remove_client); } EXPORT_SYMBOL_GPL(hsi_port_unregister_clients); /** * hsi_unregister_controller - Unregister an HSI controller * @hsi: The HSI controller to register */ void hsi_unregister_controller(struct hsi_controller *hsi) { device_for_each_child(&hsi->device, NULL, hsi_remove_port); device_unregister(&hsi->device); } EXPORT_SYMBOL_GPL(hsi_unregister_controller); /** -- 2.28.0