[coreboot-gerrit] Patch set updated for coreboot: 22d57b3 southbridge/via/vt8237r/ctrl.c: Remove set but unused variable `regm3`

Ronald G. Minnich (rminnich@gmail.com) gerrit at coreboot.org
Tue Oct 22 22:40:39 CEST 2013


Ronald G. Minnich (rminnich at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3985

-gerrit

commit 22d57b3afc4a46be4b869d411b5855f4630df2fd
Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Sun Oct 20 00:41:28 2013 +0200

    southbridge/via/vt8237r/ctrl.c: Remove set but unused variable `regm3`
    
    Change-Id: I6bb652419a54b7b7190e417346581f38335425ae
    Signed-off-by: Paul Menzel <paulepanter at users.sourceforge.net>
---
 src/southbridge/via/vt8237r/ctrl.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/southbridge/via/vt8237r/ctrl.c b/src/southbridge/via/vt8237r/ctrl.c
index 78a15e3..e61b8f2 100644
--- a/src/southbridge/via/vt8237r/ctrl.c
+++ b/src/southbridge/via/vt8237r/ctrl.c
@@ -29,7 +29,7 @@
 
 static void vt8237_cfg(struct device *dev)
 {
-	u8 regm, regm3;
+	u8 regm;
 	device_t devfun3;
 
 	devfun3 = dev_find_device(PCI_VENDOR_ID_VIA,
@@ -80,8 +80,7 @@ static void vt8237_cfg(struct device *dev)
 	regm = pci_read_config8(devfun3, 0x83);
 	pci_write_config8(dev, 0x63, regm);
 
-	// FIXME is this really supposed to be regm3?
-	regm3 = pci_read_config8(devfun3, 0x82);/* Shadow page E */
+	regm = pci_read_config8(devfun3, 0x82);/* Shadow page E */
 	pci_write_config8(dev, 0x64, regm);
 
 	regm = pci_read_config8(devfun3, 0x86);	/* SMM and APIC decoding */



More information about the coreboot-gerrit mailing list