Skip to content

Commit

Permalink
Merge tag 'hsi-for-5.11' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/sre/linux-hsi

Pull HSI updates from Sebastian Reichel:
 "Misc cleanups"

* tag 'hsi-for-5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi:
  HSI: core: fix a kernel-doc markup
  HSI: omap_ssi: Don't jump to free ID in ssi_add_controller()
  • Loading branch information
torvalds committed Dec 19, 2020
2 parents d56154c + 8a77ed6 commit c2703b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/hsi/controllers/omap_ssi_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ static int ssi_add_controller(struct hsi_controller *ssi,

err = ida_simple_get(&platform_omap_ssi_ida, 0, 0, GFP_KERNEL);
if (err < 0)
goto out_err;
return err;
ssi->id = err;

ssi->owner = THIS_MODULE;
Expand Down
2 changes: 1 addition & 1 deletion drivers/hsi/hsi_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ static void hsi_port_release(struct device *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)
Expand Down

0 comments on commit c2703b6

Please sign in to comment.