Commit d346da4a authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'ide-5.11-2021-02-28' of git://git.kernel.dk/linux-block

Pull ide fix from Jens Axboe:
 "This is a leftover fix from 5.11, where I forgot to ship it your way"

* tag 'ide-5.11-2021-02-28' of git://git.kernel.dk/linux-block:
  ide/falconide: Fix module unload
parents 06d5d309 07f1dc8c
...@@ -164,6 +164,7 @@ static int __init falconide_init(struct platform_device *pdev) ...@@ -164,6 +164,7 @@ static int __init falconide_init(struct platform_device *pdev)
if (rc) if (rc)
goto err_free; goto err_free;
platform_set_drvdata(pdev, host);
return 0; return 0;
err_free: err_free:
ide_host_free(host); ide_host_free(host);
...@@ -174,7 +175,7 @@ static int __init falconide_init(struct platform_device *pdev) ...@@ -174,7 +175,7 @@ static int __init falconide_init(struct platform_device *pdev)
static int falconide_remove(struct platform_device *pdev) static int falconide_remove(struct platform_device *pdev)
{ {
struct ide_host *host = dev_get_drvdata(&pdev->dev); struct ide_host *host = platform_get_drvdata(pdev);
ide_host_remove(host); ide_host_remove(host);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment