From 14b467e840f8735e050b1844731c7747a7130525 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 9 Oct 2013 16:40:33 -0700 Subject: [PATCH] Fix MIPS build. Warnings are errors for all home-grown bionic code, and the arch-specific code now counts as home-grown bionic code (it was mistakenly counted as "not ours" before). Change-Id: I9c6a881b0dc596bae7dfe112c5c189e073800a3a --- libc/arch-mips/bionic/{cacheflush.c => cacheflush.cpp} | 3 +-- libc/arch-mips/mips.mk | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) rename libc/arch-mips/bionic/{cacheflush.c => cacheflush.cpp} (98%) diff --git a/libc/arch-mips/bionic/cacheflush.c b/libc/arch-mips/bionic/cacheflush.cpp similarity index 98% rename from libc/arch-mips/bionic/cacheflush.c rename to libc/arch-mips/bionic/cacheflush.cpp index 2b03eee83..7955dd69d 100644 --- a/libc/arch-mips/bionic/cacheflush.c +++ b/libc/arch-mips/bionic/cacheflush.cpp @@ -55,8 +55,7 @@ #endif /* This is the Android signature */ -int cacheflush (long start, long end, long flags) -{ +int cacheflush (long start, long end, long /*flags*/) { if (end < start) { /* * It looks like this is really MIPS style cacheflush call diff --git a/libc/arch-mips/mips.mk b/libc/arch-mips/mips.mk index 7a3c9789e..3f7094e78 100644 --- a/libc/arch-mips/mips.mk +++ b/libc/arch-mips/mips.mk @@ -5,7 +5,7 @@ _LIBC_ARCH_COMMON_SRC_FILES := \ arch-mips/bionic/_setjmp.S \ arch-mips/bionic/futex_mips.S \ arch-mips/bionic/bzero.S \ - arch-mips/bionic/cacheflush.c \ + arch-mips/bionic/cacheflush.cpp \ arch-mips/bionic/clone.S \ arch-mips/bionic/ffs.S \ arch-mips/bionic/memcmp16.S \