aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/arm/arm32/lib/setbit.S
diff options
context:
space:
mode:
Diffstat (limited to 'xen/arch/arm/arm32/lib/setbit.S')
-rw-r--r--xen/arch/arm/arm32/lib/setbit.S18
1 files changed, 18 insertions, 0 deletions
diff --git a/xen/arch/arm/arm32/lib/setbit.S b/xen/arch/arm/arm32/lib/setbit.S
new file mode 100644
index 0000000000..c828851553
--- /dev/null
+++ b/xen/arch/arm/arm32/lib/setbit.S
@@ -0,0 +1,18 @@
+/*
+ * linux/arch/arm/lib/setbit.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 <xen/config.h>
+
+#include "assembler.h"
+#include "bitops.h"
+ .text
+
+ENTRY(_set_bit)
+ bitop orr
+ENDPROC(_set_bit)