Revision 841c35169323cd833294798e58b9bf63fa4fa1de authored by Linus Torvalds on 11 February 2024, 20:18:13 UTC, committed by Linus Torvalds on 11 February 2024, 20:18:13 UTC
1 parent 2766f59
Raw File
testclearbit.S
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 *  linux/arch/arm/lib/testclearbit.S
 *
 *  Copyright (C) 1995-1996 Russell King
 */
#include <linux/linkage.h>
#include <asm/assembler.h>
#include "bitops.h"
                .text

testop	_test_and_clear_bit, bicne, strne

#if __LINUX_ARM_ARCH__ >= 6
sync_testop	_sync_test_and_clear_bit, bicne, strne
#endif
back to top