[coreboot] New patch to review for coreboot: d67fb6a servengines/pilot superio: add attribute unused

Sven Schnelle (svens@stackframe.org) gerrit at coreboot.org
Mon Jul 9 11:02:45 CEST 2012


Sven Schnelle (svens at stackframe.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1193

-gerrit

commit d67fb6a434e2d0197620cb4280d08deb4553549a
Author: Sven Schnelle <svens at stackframe.org>
Date:   Fri Jul 6 12:24:23 2012 +0200

    servengines/pilot superio: add attribute unused
    
    Not all users use both functions, so add __attribute__((unused))
    to prevent compiler errors.
    
    Change-Id: I8485bb9150b04d1f9fdc231152a43bcd6fc713a7
    Signed-off-by: Sven Schnelle <svens at stackframe.org>
---
 src/superio/serverengines/pilot/early_serial.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/superio/serverengines/pilot/early_serial.c b/src/superio/serverengines/pilot/early_serial.c
index a2bbec4..1389126 100644
--- a/src/superio/serverengines/pilot/early_serial.c
+++ b/src/superio/serverengines/pilot/early_serial.c
@@ -38,7 +38,7 @@ static void pnp_exit_ext_func_mode(device_t dev)
 }
 
 /* Serial config is a fairly standard procedure. */
-static void pilot_enable_serial(device_t dev, u16 iobase)
+static void __attribute__((unused)) pilot_enable_serial(device_t dev, u16 iobase)
 {
 	pnp_enter_ext_func_mode(dev);
 	pnp_set_logical_device(dev);
@@ -47,7 +47,7 @@ static void pilot_enable_serial(device_t dev, u16 iobase)
 	pnp_exit_ext_func_mode(dev);
 }
 
-static void pilot_disable_serial(device_t dev)
+static void __attribute__((unused)) pilot_disable_serial(device_t dev)
 {
 	pnp_enter_ext_func_mode(dev);
 	pnp_set_logical_device(dev);




More information about the coreboot mailing list