diff options
Diffstat (limited to 'arch/openrisc/include/asm/bitops')
-rw-r--r-- | arch/openrisc/include/asm/bitops/ffs.h | 23 | ||||
-rw-r--r-- | arch/openrisc/include/asm/bitops/fls.h | 23 |
2 files changed, 0 insertions, 46 deletions
diff --git a/arch/openrisc/include/asm/bitops/ffs.h b/arch/openrisc/include/asm/bitops/ffs.h deleted file mode 100644 index 50746cfa0b..0000000000 --- a/arch/openrisc/include/asm/bitops/ffs.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_FFS_H -#define __ASM_OPENRISC_FFS_H - -static inline int ffs(int x) -{ - int ret; - - __asm__ ("l.ff1 %0,%1" - : "=r" (ret) - : "r" (x)); - - return ret; -} - -#endif /* __ASM_OPENRISC_FFS_H */ 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 */ |