From patchwork Thu Oct 2 21:10:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Heimpold X-Patchwork-Id: 5020501 Return-Path: X-Original-To: patchwork-linux-spi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id EDE919F3ED for ; Thu, 2 Oct 2014 21:16:45 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CA25C201ED for ; Thu, 2 Oct 2014 21:16:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B53C220158 for ; Thu, 2 Oct 2014 21:16:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751880AbaJBVQn (ORCPT ); Thu, 2 Oct 2014 17:16:43 -0400 Received: from mo4-p00-ob.smtp.rzone.de ([81.169.146.220]:53323 "EHLO mo4-p00-ob.smtp.rzone.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751873AbaJBVQm (ORCPT ); Thu, 2 Oct 2014 17:16:42 -0400 X-Greylist: delayed 365 seconds by postgrey-1.27 at vger.kernel.org; Thu, 02 Oct 2014 17:16:42 EDT DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; t=1412284601; l=695; s=domk; d=heimpold.de; h=Date:Subject:Cc:To:From; bh=LWTBjmPMTucPCIs3mNgJ8FrHH9w=; b=AEaPsF0t8dSsNWVNMz1DQ9HDNfWDnishpQW9h1WJVb3eeqgdLGzsFLmz7K2Z0zA4QBR G3vb7SVlcK1IFxMuCCR1YSVOm9b9qWBFSMOjEQNH/jNLfbVPYgWrJ8kfhDv71RrmcMe7V NTHazxDvXCtJM6g/D5DKuPrAGTeBxxAX6R4= X-RZG-AUTH: :O2kGeEG7b/pS1EW8QnKjhhg/vO4pzqdNys2z+NfqLSUoNNCTudAOGTJyALYF4lWuIGRcUwo= X-RZG-CLASS-ID: mo00 Received: from tonne.mhei.heimpold.itr (dslb-094-222-239-104.094.222.pools.vodafone-ip.de [94.222.239.104]) by post.strato.de (RZmta 35.9 DYNA|AUTH) with ESMTPA id Q0555cq92LAZIKU; Thu, 2 Oct 2014 23:10:35 +0200 (CEST) Received: from kerker.fritz.box (kerker.fritz.box [192.168.8.23]) by tonne.mhei.heimpold.itr (Postfix) with ESMTP id 532D5132023; Thu, 2 Oct 2014 23:10:35 +0200 (CEST) From: Michael Heimpold To: Mark Brown Cc: linux-spi@vger.kernel.org, Michael Heimpold Subject: [PATCH] spi: spi-mxs: fix a tiny typo in a comment Date: Thu, 2 Oct 2014 23:10:22 +0200 Message-Id: <1412284222-5855-1-git-send-email-mhei@heimpold.de> X-Mailer: git-send-email 1.7.10.4 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-8.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Michael Heimpold --- drivers/spi/spi-mxs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi-mxs.c b/drivers/spi/spi-mxs.c index 2884f0c..74f2ba0 100644 --- a/drivers/spi/spi-mxs.c +++ b/drivers/spi/spi-mxs.c @@ -85,7 +85,7 @@ static int mxs_spi_setup_transfer(struct spi_device *dev, mxs_ssp_set_clk_rate(ssp, hz); /* * Save requested rate, hz, rather than the actual rate, - * ssp->clk_rate. Otherwise we would set the rate every trasfer + * ssp->clk_rate. Otherwise we would set the rate every transfer * when the actual rate is not quite the same as requested rate. */ spi->sck = hz;