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 branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc:
mmc: sdio: Allow sdio operations in other threads during sdio_add_func()

+1 -2
+1 -2
drivers/mmc/core/sdio.c
··· 792 792 */ 793 793 mmc_release_host(host); 794 794 err = mmc_add_card(host->card); 795 - mmc_claim_host(host); 796 795 if (err) 797 796 goto remove_added; 798 797 ··· 804 805 goto remove_added; 805 806 } 806 807 808 + mmc_claim_host(host); 807 809 return 0; 808 810 809 811 810 812 remove_added: 811 813 /* Remove without lock if the device has been added. */ 812 - mmc_release_host(host); 813 814 mmc_sdio_remove(host); 814 815 mmc_claim_host(host); 815 816 remove: