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@stackframe.org>
Reviewed-on: http://review.coreboot.org/1193
Tested-by: build bot (Jenkins)
This commit is contained in:
Sven Schnelle 2012-07-06 12:24:23 +02:00
parent 6d03876aff
commit 356a600907
1 changed files with 2 additions and 2 deletions

View File

@ -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);