From patchwork Thu Aug 5 20:23:16 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julia Lawall X-Patchwork-Id: 117426 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o75KNm4X006861 for ; Thu, 5 Aug 2010 20:23:50 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932934Ab0HEUXW (ORCPT ); Thu, 5 Aug 2010 16:23:22 -0400 Received: from mgw2.diku.dk ([130.225.96.92]:55629 "EHLO mgw2.diku.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932376Ab0HEUXS (ORCPT ); Thu, 5 Aug 2010 16:23:18 -0400 Received: from localhost (localhost [127.0.0.1]) by mgw2.diku.dk (Postfix) with ESMTP id 99A6319BF0C; Thu, 5 Aug 2010 22:23:17 +0200 (CEST) Received: from mgw2.diku.dk ([127.0.0.1]) by localhost (mgw2.diku.dk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30385-12; Thu, 5 Aug 2010 22:23:16 +0200 (CEST) Received: from nhugin.diku.dk (nhugin.diku.dk [130.225.96.140]) by mgw2.diku.dk (Postfix) with ESMTP id 60C8D19BF04; Thu, 5 Aug 2010 22:23:16 +0200 (CEST) Received: from ask.diku.dk (ask.diku.dk [130.225.96.225]) by nhugin.diku.dk (Postfix) with ESMTP id 0551C6DFC31; Thu, 5 Aug 2010 22:22:07 +0200 (CEST) Received: by ask.diku.dk (Postfix, from userid 3767) id 46A95200C3; Thu, 5 Aug 2010 22:23:16 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ask.diku.dk (Postfix) with ESMTP id 3C23F200BD; Thu, 5 Aug 2010 22:23:16 +0200 (CEST) Date: Thu, 5 Aug 2010 22:23:16 +0200 (CEST) From: Julia Lawall To: Jesse Barnes , linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: [PATCH 21/42] drivers/pci: Adjust confusing if indentation Message-ID: MIME-Version: 1.0 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 05 Aug 2010 20:23:50 +0000 (UTC) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 7fa3cbd..cc232c0 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -2689,7 +2689,7 @@ int pcie_get_readrq(struct pci_dev *dev) ret = pci_read_config_word(dev, cap + PCI_EXP_DEVCTL, &ctl); if (!ret) - ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12); + ret = 128 << ((ctl & PCI_EXP_DEVCTL_READRQ) >> 12); return ret; }