diff options
| author | Alexandre Bounine <alexandre.bounine@idt.com> | 2012-08-21 19:16:12 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-08-21 19:45:03 -0400 |
| commit | 9a9a9a7adafe62a34de8b4fb48936c1c5f9bafa5 (patch) | |
| tree | 15f1556d746f5fccf31b10f88062c0903c8a2116 | |
| parent | 3670e7e12e582c6d67761275d148171feb7a9004 (diff) | |
rapidio/tsi721: fix unused variable compiler warning
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>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | drivers/rapidio/devices/tsi721.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/rapidio/devices/tsi721.c b/drivers/rapidio/devices/tsi721.c index c0d6a049cbd6..5d44252b7342 100644 --- a/drivers/rapidio/devices/tsi721.c +++ b/drivers/rapidio/devices/tsi721.c | |||
| @@ -2219,7 +2219,7 @@ static int __devinit tsi721_probe(struct pci_dev *pdev, | |||
| 2219 | const struct pci_device_id *id) | 2219 | const struct pci_device_id *id) |
| 2220 | { | 2220 | { |
| 2221 | struct tsi721_device *priv; | 2221 | struct tsi721_device *priv; |
| 2222 | int i, cap; | 2222 | int cap; |
| 2223 | int err; | 2223 | int err; |
| 2224 | u32 regval; | 2224 | u32 regval; |
| 2225 | 2225 | ||
| @@ -2239,12 +2239,15 @@ static int __devinit tsi721_probe(struct pci_dev *pdev, | |||
| 2239 | priv->pdev = pdev; | 2239 | priv->pdev = pdev; |
| 2240 | 2240 | ||
| 2241 | #ifdef DEBUG | 2241 | #ifdef DEBUG |
| 2242 | { | ||
| 2243 | int i; | ||
| 2242 | for (i = 0; i <= PCI_STD_RESOURCE_END; i++) { | 2244 | for (i = 0; i <= PCI_STD_RESOURCE_END; i++) { |
| 2243 | dev_dbg(&pdev->dev, "res[%d] @ 0x%llx (0x%lx, 0x%lx)\n", | 2245 | dev_dbg(&pdev->dev, "res[%d] @ 0x%llx (0x%lx, 0x%lx)\n", |
| 2244 | i, (unsigned long long)pci_resource_start(pdev, i), | 2246 | i, (unsigned long long)pci_resource_start(pdev, i), |
| 2245 | (unsigned long)pci_resource_len(pdev, i), | 2247 | (unsigned long)pci_resource_len(pdev, i), |
| 2246 | pci_resource_flags(pdev, i)); | 2248 | pci_resource_flags(pdev, i)); |
| 2247 | } | 2249 | } |
| 2250 | } | ||
| 2248 | #endif | 2251 | #endif |
| 2249 | /* | 2252 | /* |
| 2250 | * Verify BAR configuration | 2253 | * Verify BAR configuration |
