[coreboot-gerrit] New patch to review for coreboot: 3834e9f x230/smihandler: Kill non-functional brightness code.

Vladimir Serbinenko (phcoder@gmail.com) gerrit at coreboot.org
Fri May 15 21:06:19 CEST 2015


Vladimir Serbinenko (phcoder at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10218

-gerrit

commit 3834e9fabd087d81134c359d55ffac98fbfce641
Author: Vladimir Serbinenko <phcoder at gmail.com>
Date:   Fri May 15 17:33:50 2015 +0200

    x230/smihandler: Kill non-functional brightness code.
    
    Just a copypaste, never worked.
    
    Change-Id: I84b46a5a0ada2e472894c63a17170e0979ad9160
    Signed-off-by: Vladimir Serbinenko <phcoder at gmail.com>
---
 src/mainboard/lenovo/x230/smihandler.c | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/src/mainboard/lenovo/x230/smihandler.c b/src/mainboard/lenovo/x230/smihandler.c
index 8208fe7..249081f 100644
--- a/src/mainboard/lenovo/x230/smihandler.c
+++ b/src/mainboard/lenovo/x230/smihandler.c
@@ -67,23 +67,6 @@ int mainboard_io_trap_handler(int smif)
 	return 1;
 }
 
-static void mainboard_smi_brightness_up(void)
-{
-	u8 value;
-
-	if ((value = pci_read_config8(PCI_DEV(0, 2, 1), 0xf4)) < 0xf0)
-		pci_write_config8(PCI_DEV(0, 2, 1), 0xf4, (value + 0x10) | 0xf);
-}
-
-static void mainboard_smi_brightness_down(void)
-{
-	u8 value;
-
-	if ((value = pci_read_config8(PCI_DEV(0, 2, 1), 0xf4)) > 0x10)
-		pci_write_config8(PCI_DEV(0, 2, 1), 0xf4,
-				  (value - 0x10) & 0xf0);
-}
-
 static void mainboard_smi_handle_ec_sci(void)
 {
 	u8 status = inb(EC_SC);
@@ -96,14 +79,6 @@ static void mainboard_smi_handle_ec_sci(void)
 	printk(BIOS_DEBUG, "EC event %02x\n", event);
 
 	switch (event) {
-	case 0x14:
-		/* brightness up */
-		mainboard_smi_brightness_up();
-		break;
-	case 0x15:
-		/* brightness down */
-		mainboard_smi_brightness_down();
-		break;
 	default:
 		break;
 	}



More information about the coreboot-gerrit mailing list