summaryrefslogtreecommitdiffstats
path: root/arch/openrisc/include/asm/bitops/fls.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/openrisc/include/asm/bitops/fls.h')
-rw-r--r--arch/openrisc/include/asm/bitops/fls.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/openrisc/include/asm/bitops/fls.h b/arch/openrisc/include/asm/bitops/fls.h
deleted file mode 100644
index 74472299c5..0000000000
--- a/arch/openrisc/include/asm/bitops/fls.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * OpenRISC Linux
- *
- * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#ifndef __ASM_OPENRISC_FLS_H
-#define __ASM_OPENRISC_FLS_H
-
-static inline int fls(int x)
-{
- int ret;
-
- __asm__ ("l.fl1 %0,%1"
- : "=r" (ret)
- : "r" (x));
-
- return ret;
-}
-
-#endif /* __ASM_OPENRISC_FLS_H */