mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
rapidio/tsi721: fix unused variable compiler warning
commit 9a9a9a7ada
upstream.
Fix unused variable compiler warning when built with CONFIG_RAPIDIO_DEBUG
option off.
This patch is applicable to kernel versions starting from v3.2
Signed-off-by: Alexandre Bounine <alexandre.bounine@idt.com>
Cc: Matt Porter <mporter@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8d30b9939e
commit
3ad3bc52af
1 changed files with 4 additions and 1 deletions
|
@ -2162,7 +2162,7 @@ static int __devinit tsi721_probe(struct pci_dev *pdev,
|
|||
const struct pci_device_id *id)
|
||||
{
|
||||
struct tsi721_device *priv;
|
||||
int i, cap;
|
||||
int cap;
|
||||
int err;
|
||||
u32 regval;
|
||||
|
||||
|
@ -2182,12 +2182,15 @@ static int __devinit tsi721_probe(struct pci_dev *pdev,
|
|||
priv->pdev = pdev;
|
||||
|
||||
#ifdef DEBUG
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i <= PCI_STD_RESOURCE_END; i++) {
|
||||
dev_dbg(&pdev->dev, "res[%d] @ 0x%llx (0x%lx, 0x%lx)\n",
|
||||
i, (unsigned long long)pci_resource_start(pdev, i),
|
||||
(unsigned long)pci_resource_len(pdev, i),
|
||||
pci_resource_flags(pdev, i));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
/*
|
||||
* Verify BAR configuration
|
||||
|
|
Loading…
Reference in a new issue