From: Christian Lütke-Stetzkamp Date: Tue, 24 Apr 2018 18:01:27 +0000 (+0200) Subject: staging: mt7621-mmc: Add annotations about held locks X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=884c06af7271a8aef42197102d4bb31cd795f3b7;p=linux.git staging: mt7621-mmc: Add annotations about held locks The functions msdc_command_resp and msdc_do_request are always called with the host->lock lock held. By adding annotations, sparse is informed about that. Signed-off-by: Christian Lütke-Stetzkamp Reviewed-by: NeilBrown Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/staging/mt7621-mmc/sd.c index 3f90316b43a6f..9476728c925c6 100644 --- a/drivers/staging/mt7621-mmc/sd.c +++ b/drivers/staging/mt7621-mmc/sd.c @@ -950,6 +950,7 @@ static unsigned int msdc_command_resp(struct msdc_host *host, struct mmc_command *cmd, int tune, unsigned long timeout) + __must_hold(&host->lock) { void __iomem *base = host->base; u32 opcode = cmd->opcode; @@ -1353,6 +1354,7 @@ static void msdc_set_blknum(struct msdc_host *host, u32 blknum) } static int msdc_do_request(struct mmc_host *mmc, struct mmc_request *mrq) + __must_hold(&host->lock) { struct msdc_host *host = mmc_priv(mmc); struct mmc_command *cmd;