aboutsummaryrefslogtreecommitdiff
path: root/hdata/test
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2017-05-24 16:00:51 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-05-26 15:55:23 +1000
commit0039819f46e71a2f549b7a418dc5440fb04156b6 (patch)
tree9048028e0c48f409b8e7ff53232cc3a07cad4f6c /hdata/test
parentc873cc7bc58b05f1aa4554f6338f430169efa1db (diff)
downloadskiboot-0039819f46e71a2f549b7a418dc5440fb04156b6.zip
skiboot-0039819f46e71a2f549b7a418dc5440fb04156b6.tar.gz
skiboot-0039819f46e71a2f549b7a418dc5440fb04156b6.tar.bz2
mem_region: rename HW_RESERVE to FW_RESERVE
Currently all existing reservations are made by hostboot itself or on behalf of some other part of system firmware (e.g. the OCCs). We want to add a "true" hardware reservation type that should not be touched by the host OS. To prepare for that this patch renames the existing reservation type to refect it's actual usage. Signed-off-by: Oliver O'Halloran <oohall@gmail.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hdata/test')
-rw-r--r--hdata/test/stubs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hdata/test/stubs.c b/hdata/test/stubs.c
index 0777730..e3b0fdf 100644
--- a/hdata/test/stubs.c
+++ b/hdata/test/stubs.c
@@ -99,7 +99,6 @@ STUB(op_display);
STUB(fsp_preload_lid);
STUB(fsp_wait_lid_loaded);
STUB(fsp_adjust_lid_side);
-STUB(backtrace);
/* Add HW specific stubs here */
static void noop_function(void) {}
@@ -107,4 +106,4 @@ static void noop_function(void) {}
void fnname(void) __attribute__((weak, alias ("noop_function")))
NOOP_STUB(early_uart_init);
-NOOP_STUB(mem_reserve_hw);
+NOOP_STUB(mem_reserve_fw);