acpigen: Remove acpigen_patch_len

Change-Id: I77276342b3f44c7c845a10682ff1f15599c4c721
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7365
Tested-by: build bot (Jenkins)
Reviewed-by: Rudolf Marek <r.marek@assembler.cz>
This commit is contained in:
Vladimir Serbinenko 2014-11-09 03:33:51 +01:00
parent e1213d16f3
commit 8104da771c
2 changed files with 1 additions and 13 deletions

View File

@ -22,7 +22,7 @@
/*
* If you need to change this, change acpigen_write_f and
* acpigen_patch_len
* acpigen_pop_len
*/
#define ACPIGEN_MAXLEN 0xfff
@ -46,17 +46,6 @@ int acpigen_write_len_f(void)
return 2;
}
void acpigen_patch_len(int len)
{
ASSERT(len <= ACPIGEN_MAXLEN)
ASSERT(ltop > 0)
char *p = len_stack[--ltop];
/* generate store length for 0xfff max */
p[0] = (0x40 | (len & 0xf));
p[1] = (len >> 4 & 0xff);
}
void acpigen_pop_len(void)
{
int len;

View File

@ -26,7 +26,6 @@
#include <arch/acpi.h>
int acpigen_write_len_f(void);
void acpigen_patch_len(int len);
void acpigen_pop_len(void);
void acpigen_set_current(char *curr);
char *acpigen_get_current(void);