From patchwork Tue Feb 7 11:06:27 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 9559683 X-Patchwork-Delegate: geert@linux-m68k.org 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 AEC366047A for ; Tue, 7 Feb 2017 11:06:45 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9FDB628342 for ; Tue, 7 Feb 2017 11:06:45 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 941DB283E7; Tue, 7 Feb 2017 11:06:45 +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.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI 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 94051283F4 for ; Tue, 7 Feb 2017 11:06:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753846AbdBGLGn (ORCPT ); Tue, 7 Feb 2017 06:06:43 -0500 Received: from sauhun.de ([89.238.76.85]:40377 "EHLO pokefinder.org" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1753821AbdBGLGk (ORCPT ); Tue, 7 Feb 2017 06:06:40 -0500 Received: from localhost (p54B33B42.dip0.t-ipconnect.de [84.179.59.66]) by pokefinder.org (Postfix) with ESMTPSA id BC62831C104; Tue, 7 Feb 2017 12:06:38 +0100 (CET) From: Wolfram Sang To: linux-mmc@vger.kernel.org Cc: linux-renesas-soc@vger.kernel.org, Yoshihiro Shimoda , Wolfram Sang Subject: [RFC 2/4] mmc: host: tmio: fix minor typos in a comment Date: Tue, 7 Feb 2017 12:06:27 +0100 Message-Id: <20170207110629.2441-3-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170207110629.2441-1-wsa+renesas@sang-engineering.com> References: <20170207110629.2441-1-wsa+renesas@sang-engineering.com> Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Making sure we match the actual register name. Signed-off-by: Wolfram Sang --- drivers/mmc/host/tmio_mmc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index b20b451ad90daa..8a4e99ffe64eb1 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h @@ -54,7 +54,7 @@ #define TMIO_STOP_STP BIT(0) #define TMIO_STOP_SEC BIT(8) -/* Definitions for values the CTRL_STATUS register can take. */ +/* Definitions for values the CTL_STATUS register can take */ #define TMIO_STAT_CMDRESPEND BIT(0) #define TMIO_STAT_DATAEND BIT(2) #define TMIO_STAT_CARD_REMOVE BIT(3)