• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision044b61ff299f1fc3e7e11bf4ee891e976c62cba5 (tree)
Zeit2020-06-03 18:54:14
AutorYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

fix build error

Ändern Zusammenfassung

Diff

--- a/arch/rx/lib/bootm.c
+++ b/arch/rx/lib/bootm.c
@@ -25,13 +25,16 @@
2525
2626 #include <common.h>
2727 #include <command.h>
28+#include <bootm.h>
29+#include <hang.h>
2830
2931 int arch_fixup_fdt(void *blob)
3032 {
3133 return 0;
3234 }
3335
34-int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
36+int do_bootm_linux(int flag, int argc, char *const argv[],
37+ bootm_headers_t *images)
3538 {
3639 /* Linux kernel load address */
3740 void (*kernel) (void *) = (void (*)(void *))images->ep;
--- a/arch/rx/lib/cache.c
+++ b/arch/rx/lib/cache.c
@@ -29,3 +29,8 @@ void flush_dcache_range(unsigned long start, unsigned long stop)
2929 {
3030 return ;
3131 }
32+
33+int dram_init(void)
34+{
35+ return 0;
36+}