From 8a138d80d0ee6e3b2edefa06c5ea469a8597f7cc Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Fri, 13 Apr 2012 06:13:37 +0000 Subject: [PATCH] Remove an unused variable. Grr. --- sys/mips/atheros/ar71xx_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/atheros/ar71xx_pci.c b/sys/mips/atheros/ar71xx_pci.c index 5cab6a483bc..911bd070669 100644 --- a/sys/mips/atheros/ar71xx_pci.c +++ b/sys/mips/atheros/ar71xx_pci.c @@ -195,7 +195,7 @@ ar71xx_pci_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, int bytes) { uint32_t data; - uint32_t cmd, shift, mask; + uint32_t shift, mask; /* register access is 32-bit aligned */ shift = (reg & 3) * 8;