summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorJoel Cunningham <joel.cunningham@garmin.com>2018-03-19 14:15:38 +0000
committerUlf Hansson <ulf.hansson@linaro.org>2018-03-22 10:50:24 +0100
commit8647d26eb3f19ab0fa29f68a8bf648054c21e4bc (patch)
treeaa904fa019e10dac8102c9c8a602b55b679f9288 /drivers/mmc
parent9c5c685e58bab9a7f985c71b18302953d1c90b27 (diff)
downloadlinux-0-day-8647d26eb3f19ab0fa29f68a8bf648054c21e4bc.tar.gz
linux-0-day-8647d26eb3f19ab0fa29f68a8bf648054c21e4bc.tar.xz
mmc: update sdio_claim_irq documentation
Update documentation for sdio_claim_irq to downgrade the wording about doing recursive claims in an IRQ handler from 'must not' to 'should not'. This clarifies that recursive claims are supported, but not the recommended (best) practice Signed-off-by: Joel Cunningham <joel.cunningham@garmin.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/core/sdio_irq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/core/sdio_irq.c b/drivers/mmc/core/sdio_irq.c
index 7a2eaf8410a3b..7ca7b99413f0d 100644
--- a/drivers/mmc/core/sdio_irq.c
+++ b/drivers/mmc/core/sdio_irq.c
@@ -277,8 +277,8 @@ static void sdio_single_irq_set(struct mmc_card *card)
*
* Claim and activate the IRQ for the given SDIO function. The provided
* handler will be called when that IRQ is asserted. The host is always
- * claimed already when the handler is called so the handler must not
- * call sdio_claim_host() nor sdio_release_host().
+ * claimed already when the handler is called so the handler should not
+ * call sdio_claim_host() or sdio_release_host().
*/
int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler)
{