summaryrefslogtreecommitdiff
path: root/src/soc/imgtec/pistachio/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/imgtec/pistachio/romstage.c')
-rw-r--r--src/soc/imgtec/pistachio/romstage.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/soc/imgtec/pistachio/romstage.c b/src/soc/imgtec/pistachio/romstage.c
index 53ca898fed..3fcf23d461 100644
--- a/src/soc/imgtec/pistachio/romstage.c
+++ b/src/soc/imgtec/pistachio/romstage.c
@@ -19,21 +19,11 @@
* MA 02110-1301 USA
*/
-#include <arch/hlt.h>
-#include <arch/stages.h>
-#include <cbfs.h>
+#include <program_loading.h>
#include <console/console.h>
void main(void)
{
- void *entry;
-
console_init();
-
- entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA,
- CONFIG_CBFS_PREFIX "/ramstage");
- if (entry != (void *)-1)
- stage_exit(entry);
-
- hlt();
+ run_ramstage();
}