]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: greybus: sdio: Fix typo in comment
authorGiorgi Tchankvetadze <giorgitchankvetadze1997@gmail.com>
Mon, 16 Feb 2026 05:53:45 +0000 (09:53 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Feb 2026 13:57:01 +0000 (14:57 +0100)
Fix a grammatical typo in a comment: change "is" to "if".
The sentence should read "check if a stop transmission is pending".

Signed-off-by: Giorgi Tchankvetadze <giorgitchankvetadze1997@gmail.com>
Link: https://patch.msgid.link/20260216055344.17033-2-giorgitchankvetadze1997@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/greybus/sdio.c

index 12c36a5e1d8ced1bc8abb13ae942eaf17cd2ddb5..a570dc06b380dcfdeadc3b326718f03c4cb5fb50 100644 (file)
@@ -372,7 +372,7 @@ static int gb_sdio_transfer(struct gb_sdio_host *host, struct mmc_data *data)
        left = data->blksz * data->blocks;
 
        while (left) {
-               /* check is a stop transmission is pending */
+               /* check if a stop transmission is pending */
                spin_lock(&host->xfer);
                if (host->xfer_stop) {
                        host->xfer_stop = false;