aboutsummaryrefslogtreecommitdiffstats
path: root/community/ofono/fix-explicit-bzero.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/ofono/fix-explicit-bzero.patch')
-rw-r--r--community/ofono/fix-explicit-bzero.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/community/ofono/fix-explicit-bzero.patch b/community/ofono/fix-explicit-bzero.patch
deleted file mode 100644
index 855fa6ba760..00000000000
--- a/community/ofono/fix-explicit-bzero.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/ell/missing.h b/ell/missing.h
-index 37d5586..649a5ac 100644
---- a/ell/missing.h
-+++ b/ell/missing.h
-@@ -54,11 +54,3 @@
- # define __NR_getrandom 0xffffffff
- # endif
- #endif
--
--#ifndef HAVE_EXPLICIT_BZERO
--static inline void explicit_bzero(void *s, size_t n)
--{
-- memset(s, 0, n);
-- __asm__ __volatile__ ("" : : "r"(s) : "memory");
--}
--#endif