From patchwork Tue Nov 5 22:31:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marta Rybczynska X-Patchwork-Id: 3144061 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@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 9ACA49F407 for ; Tue, 5 Nov 2013 22:23:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 81AE1205DA for ; Tue, 5 Nov 2013 22:23:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 97E01205B3 for ; Tue, 5 Nov 2013 22:23:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755604Ab3KEWXj (ORCPT ); Tue, 5 Nov 2013 17:23:39 -0500 Received: from mail-wg0-f52.google.com ([74.125.82.52]:58650 "EHLO mail-wg0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755589Ab3KEWXj (ORCPT ); Tue, 5 Nov 2013 17:23:39 -0500 Received: by mail-wg0-f52.google.com with SMTP id k14so4190867wgh.7 for ; Tue, 05 Nov 2013 14:23:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=xyCks02pDHGPzuCqQSKY4WzuQhFqBoR0q/0lXX3RkCA=; b=DkLdi/uvsAVGq0i9U8x7conYHQF5v2f0KDFo4XWkPgxb9g+VlDzjIuugOvPs0Or+GW 8kgQn8nSnILMBD4HnrXmsmCtMHA2+En2nFA0S2sx0YS2nYbTDqzUvww57icrT+gVCdM0 DTbG0DbJ88E7RGO9d1eRqicn6tbtEpn8G9lqZ0AvOhKmVCI4RPav9c43+MmX104FGp63 IaBpU+Jq1eWx2xaGUceu3GL9B6U+xrKpL2A4qMfo3RQ7IT21sjcrCCoq1jHIhMOwdIEx 42Enm1bkXsnQqNWts1eqh8CBmBR30swTE7oL/sXEFART3BvXO22aeYlsdxk4aO8n1QHf 3PyA== X-Received: by 10.195.13.164 with SMTP id ez4mr19809448wjd.11.1383690217757; Tue, 05 Nov 2013 14:23:37 -0800 (PST) Received: from desktop (pas38-7-83-153-92-205.fbx.proxad.net. [83.153.92.205]) by mx.google.com with ESMTPSA id d11sm18631562wic.4.2013.11.05.14.23.36 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Nov 2013 14:23:36 -0800 (PST) Date: Tue, 5 Nov 2013 23:31:35 +0100 From: Marta Rybczynska To: Bjorn Helgaas Cc: linux-pci@vger.kernel.org, Jiri Kosina Subject: [PATCH] drivers/pci/pci.c: fix comment typo Message-ID: <20131105223135.GA10523@desktop.fbx.proxad.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, 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: Marta Rybczynska --- drivers/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index bdd64b1..fb5090d 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -3339,7 +3339,7 @@ void pci_reset_bridge_secondary_bus(struct pci_dev *dev) pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl); /* * PCI spec v3.0 7.6.4.2 requires minimum Trst of 1ms. Double - * this to 2ms to ensure that we meet the minium requirement. + * this to 2ms to ensure that we meet the minimum requirement. */ msleep(2);