• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revisión2379902075d5209714ea75c1180a2a6c4685c434 (tree)
Tiempo2020-05-27 20:28:31
AutorYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

add cache function

Cambiar Resumen

Diferencia incremental

--- a/arch/rx/lib/Makefile
+++ b/arch/rx/lib/Makefile
@@ -17,4 +17,4 @@
1717 # MA 02111-1307 USA
1818 #
1919
20-obj-y += bootm.o
20+obj-y += bootm.o cache.o
--- /dev/null
+++ b/arch/rx/lib/cache.c
@@ -0,0 +1,31 @@
1+/*
2+ * (C) Copyright 2003
3+ * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4+ *
5+ * (c) Copyright 2011 Yoshinori Sato <ysato@users.sourceforge.jp>
6+ *
7+ * See file CREDITS for list of people who contributed to this
8+ * project.
9+ *
10+ * This program is free software; you can redistribute it and/or modify
11+ * it under the terms of the GNU General Public License as published by
12+ * the Free Software Foundation; either version 2 of the License, or
13+ * (at your option) any later version.
14+ *
15+ * This program is distributed in the hope that it will be useful,
16+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
17+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+ * GNU General Public License for more details.
19+ *
20+ * You should have received a copy of the GNU General Public License
21+ * along with this program; if not, write to the Free Software
22+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23+ *
24+ */
25+
26+#include <common.h>
27+
28+void flush_dcache_range(unsigned long start, unsigned long stop)
29+{
30+ return ;
31+}