[PATCH 08/42] powerpc/mvme5500/pci/pcifinddevice.c: Remove unused variable
Joel Sherrill
joel.sherrill at oarcorp.com
Fri Oct 17 15:23:24 UTC 2014
---
c/src/lib/libbsp/powerpc/mvme5500/pci/pcifinddevice.c | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/c/src/lib/libbsp/powerpc/mvme5500/pci/pcifinddevice.c b/c/src/lib/libbsp/powerpc/mvme5500/pci/pcifinddevice.c
index ac2f050..493388a 100644
--- a/c/src/lib/libbsp/powerpc/mvme5500/pci/pcifinddevice.c
+++ b/c/src/lib/libbsp/powerpc/mvme5500/pci/pcifinddevice.c
@@ -1,13 +1,12 @@
-/* pcifinddevice.c
- *
- * Copyright 2001, Till Straumann <strauman at slac.stanford.edu>
- *
+/*
* find a particular PCI device
* (we assume, the firmware configured the PCI bus[es] for us)
- *
+ */
+
+/*
+ * Copyright 2001, Till Straumann <strauman at slac.stanford.edu>
*
* Kate Feng <feng1 at bnl.gov>, modified it to support the mvme5500 board.
- *
*/
#include <bsp/pci.h>
@@ -19,10 +18,8 @@ static int BSP_pciDebug=0;
int BSP_pciFindDevicePrint(unsigned short vendorid, unsigned short deviceid,
int instance, int *pbus, int *pdev, int *pfun )
{
- int x;
-
BSP_pciDebug = 1;
- x=pci_find_device(vendorid, deviceid, instance, pbus, pdev, pfun );
+ (void) pci_find_device(vendorid, deviceid, instance, pbus, pdev, pfun );
BSP_pciDebug = 0;
return 0;
--
1.9.3
More information about the devel
mailing list