Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -1
+2 -1
drivers/ide/falconide.c
··· 164 164 if (rc) 165 165 goto err_free; 166 166 167 + platform_set_drvdata(pdev, host); 167 168 return 0; 168 169 err_free: 169 170 ide_host_free(host); ··· 175 174 176 175 static int falconide_remove(struct platform_device *pdev) 177 176 { 178 - struct ide_host *host = dev_get_drvdata(&pdev->dev); 177 + struct ide_host *host = platform_get_drvdata(pdev); 179 178 180 179 ide_host_remove(host); 181 180