From patchwork Sun Mar 1 12:49:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcin Bis X-Patchwork-Id: 5907721 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.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id C6FBD9F373 for ; Sun, 1 Mar 2015 12:50:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F36BD20268 for ; Sun, 1 Mar 2015 12:50:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3257720253 for ; Sun, 1 Mar 2015 12:50:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753492AbbCAMuI (ORCPT ); Sun, 1 Mar 2015 07:50:08 -0500 Received: from mail-lb0-f176.google.com ([209.85.217.176]:41026 "EHLO mail-lb0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752836AbbCAMuF (ORCPT ); Sun, 1 Mar 2015 07:50:05 -0500 Received: by lbvp9 with SMTP id p9so2229942lbv.8 for ; Sun, 01 Mar 2015 04:50:03 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=J7CnpyQJDb6czlFEWLwKJSTKtIU365YjvhD3SVdzSKk=; b=Lh4clpasb/yJp+4fi0YxueY+Bvk+HwBWVq6rlDMCijni+3yEriaeL4cpCPvwESPKTS kMvMmTF7AQ/j1LVWdRVcC4zbsZnYzqAFCUQvOJuD0+1n+kgakTk48rBXSr8thEEovz/B 4nSClAQKMuH7UWD1xCBI2qIyMaoYznAzPHsFEGEupygK2/G9rOJC3EFown/q0Cst40OJ 6R0mqn6nkTZhElRjbBUqM1hDEfYZBqjShK+oev565IMoavoHBl5LDa4CfHcEqviAV0LB 03dhvN/50uWE1n0C/y8taJ1kzSYRNbWG2vAj+a0B2CEbkG+rf34jQ1pCpYA7ZImqJAnP Vfsg== X-Gm-Message-State: ALoCoQng6jGtxRrNdNjNFzxYlxyV1+6G/QDFtfBDipGdJnt6hQCulia1WUY1lTKWB5cfiGriAW8/ X-Received: by 10.152.7.162 with SMTP id k2mr19705834laa.92.1425214203125; Sun, 01 Mar 2015 04:50:03 -0800 (PST) Received: from localhost.localdomain (85-222-59-23.dynamic.chello.pl. [85.222.59.23]) by mx.google.com with ESMTPSA id uf3sm1926725lbc.44.2015.03.01.04.50.02 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 01 Mar 2015 04:50:02 -0800 (PST) From: Marcin Bis To: Mark Brown Cc: trivial@kernel.org, linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org, Marcin Bis Subject: [PATCH] spi - fix a typo in comment. Date: Sun, 1 Mar 2015 13:49:32 +0100 Message-Id: <1425214172-23269-1-git-send-email-marcin@bis.org.pl> X-Mailer: git-send-email 1.9.1 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_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 alway -> always Signed-off-by: Marcin Bis --- include/linux/spi/spi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index ed9489d..856d34d 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h @@ -649,7 +649,7 @@ struct spi_transfer { * sequence completes. On some systems, many such sequences can execute as * as single programmed DMA transfer. On all systems, these messages are * queued, and might complete after transactions to other devices. Messages - * sent to a given spi_device are alway executed in FIFO order. + * sent to a given spi_device are always executed in FIFO order. * * The code that submits an spi_message (and its spi_transfers) * to the lower layers is responsible for managing its memory.