qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 05/14] target-cris: Remove unnecessary ifdef from mm


From: Peter Maydell
Subject: [Qemu-devel] [PATCH 05/14] target-cris: Remove unnecessary ifdef from mmu.c
Date: Tue, 9 Feb 2016 15:25:02 +0000

mmu.c is only built for CONFIG_SOFTMMU targets, so there is
no need to redundantly surround the whole file contents with
an #ifndef CONFIG_USER_ONLY. The ifdef also confuses the
Coccinelle tool.

Signed-off-by: Peter Maydell <address@hidden>
---
 target-cris/mmu.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/target-cris/mmu.c b/target-cris/mmu.c
index 1c95a41..4a9c595 100644
--- a/target-cris/mmu.c
+++ b/target-cris/mmu.c
@@ -18,8 +18,6 @@
  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef CONFIG_USER_ONLY
-
 #include "cpu.h"
 #include "mmu.h"
 
@@ -360,4 +358,3 @@ int cris_mmu_translate(struct cris_mmu_result *res,
        env->pregs[PR_SRS] = old_srs;
        return miss;
 }
-#endif
-- 
1.9.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]