From patchwork Sun Nov 19 02:01:18 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10064979 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 32D9760352 for ; Sun, 19 Nov 2017 02:01:23 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 18A0D29626 for ; Sun, 19 Nov 2017 02:01:23 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0D3C229629; Sun, 19 Nov 2017 02:01:23 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9999429626 for ; Sun, 19 Nov 2017 02:01:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750929AbdKSCBV (ORCPT ); Sat, 18 Nov 2017 21:01:21 -0500 Received: from bombadil.infradead.org ([65.50.211.133]:37176 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750909AbdKSCBV (ORCPT ); Sat, 18 Nov 2017 21:01:21 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=O8tQSHGoNCR6T01EbiMI+PdcTQ9HX5fkds5qdQ+y9AM=; b=NH4rFvzST5J+84gbdYd9N3MXb lwTNXfXoU/Tq8fOZ07kym/YdCh7zAgIk9gisIbtrUzaQUX2RWSYbmuv5p2gJKSWXhXZzhJE60fUBi 7pAFgYTVIHe35W1Ql5sQy6QQTP37TaXye+wNoNTUroOhxapywDYbkZC8VBpJQ77afHvjLQ++KEPvA /xvqNLF0Y8GI+ClDPrxNlEtB2EI0IivVVSITpNt6reoUBUhdt1NoWzkiQixqFTLFD7f0BDvh+vIZu GOzgb5M3BLSgtS+1hmersunTnA6cECXnnxCa24Iog/oecLNPULSd6wLaU6l+MSDMggKitiyon1h03 G6cD/bOvQ==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlap) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1eGEv8-0000iB-Mi; Sun, 19 Nov 2017 02:01:18 +0000 To: linux-mmc@vger.kernel.org, Ulf Hansson , Linus Walleij Cc: Shawn Lin From: Randy Dunlap Subject: [PATCH] mmc: core/block.c: fix comment typos Message-ID: Date: Sat, 18 Nov 2017 18:01:18 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 Content-Language: en-US Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix comment typos. Signed-off-by: Randy Dunlap Cc: Ulf Hansson Cc: Linus Walleij Cc: Shawn Lin --- drivers/mmc/core/block.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- lnx-414.orig/drivers/mmc/core/block.c +++ lnx-414/drivers/mmc/core/block.c @@ -2033,8 +2033,8 @@ static struct mmc_blk_data *mmc_blk_allo devidx = ida_simple_get(&mmc_blk_ida, 0, max_devices, GFP_KERNEL); if (devidx < 0) { /* - * We get -ENOSPC because there are no more any available - * devidx. The reason may be that, either userspace haven't yet + * We get -ENOSPC because there are not any available devidx + * entries. The reason may be that, either userspace hasn't yet * unmounted the partitions, which postpones mmc_blk_release() * from being called, or the device has more partitions than * what we support.