aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/lib/clearbit.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/lib/clearbit.S')
-rw-r--r--arch/arm/lib/clearbit.S17
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/lib/clearbit.S b/arch/arm/lib/clearbit.S
new file mode 100644
index 00000000..4c04c3b5
--- /dev/null
+++ b/arch/arm/lib/clearbit.S
@@ -0,0 +1,17 @@
+/*
+ * linux/arch/arm/lib/clearbit.S
+ *
+ * Copyright (C) 1995-1996 Russell King
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+#include <linux/linkage.h>
+#include <asm/assembler.h>
+#include "bitops.h"
+ .text
+
+ENTRY(_clear_bit)
+ bitop bic
+ENDPROC(_clear_bit)