summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-11-09 03:51:32 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2015-05-26 20:31:41 +0200
commit9bb5c5c402fa26b9726019abc70c580d874bdfef (patch)
tree37234e5351ad813023cf8e4f1e06dc88af159f07 /src/southbridge/intel
parent8104da771c579a092c576318509fe25df074f1ec (diff)
downloadcoreboot-9bb5c5c402fa26b9726019abc70c580d874bdfef.tar.gz
coreboot-9bb5c5c402fa26b9726019abc70c580d874bdfef.tar.bz2
coreboot-9bb5c5c402fa26b9726019abc70c580d874bdfef.zip
acpigen: Remove all explicit length tracking
Change-Id: I88248d78c01b4b4e42a097889b5f4ddfdac3d966 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7367 Tested-by: build bot (Jenkins) Reviewed-by: Rudolf Marek <r.marek@assembler.cz>
Diffstat (limited to 'src/southbridge/intel')
-rw-r--r--src/southbridge/intel/lynxpoint/acpi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/southbridge/intel/lynxpoint/acpi.c b/src/southbridge/intel/lynxpoint/acpi.c
index 0f00a9578049..22f892172b21 100644
--- a/src/southbridge/intel/lynxpoint/acpi.c
+++ b/src/southbridge/intel/lynxpoint/acpi.c
@@ -57,18 +57,18 @@ void acpi_create_intel_hpet(acpi_hpet_t * hpet)
acpi_checksum((void *) hpet, sizeof(acpi_hpet_t));
}
-static int acpi_create_serialio_ssdt_entry(int id, global_nvs_t *gnvs)
+static void acpi_create_serialio_ssdt_entry(int id, global_nvs_t *gnvs)
{
char sio_name[5] = {};
snprintf(sio_name, sizeof (sio_name), "S%1uEN", id);
- return acpigen_write_name_byte(sio_name, gnvs->s0b[id] ? 1 : 0);
+ acpigen_write_name_byte(sio_name, gnvs->s0b[id] ? 1 : 0);
}
void acpi_create_serialio_ssdt(acpi_header_t *ssdt)
{
unsigned long current = (unsigned long)ssdt + sizeof(acpi_header_t);
global_nvs_t *gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
- int id, len = 0;
+ int id;
if (!gnvs)
return;
@@ -87,7 +87,7 @@ void acpi_create_serialio_ssdt(acpi_header_t *ssdt)
/* Fill the SSDT with an entry for each SerialIO device */
for (id = 0; id < 8; id++)
- len += acpi_create_serialio_ssdt_entry(id, gnvs);
+ acpi_create_serialio_ssdt_entry(id, gnvs);
/* (Re)calculate length and checksum. */
current = (unsigned long)acpigen_get_current();