aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/boot/acpigen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/boot/acpigen.c')
-rw-r--r--src/arch/x86/boot/acpigen.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/arch/x86/boot/acpigen.c b/src/arch/x86/boot/acpigen.c
index 0fb400e4eb..108d6c84eb 100644
--- a/src/arch/x86/boot/acpigen.c
+++ b/src/arch/x86/boot/acpigen.c
@@ -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;