24 lines
453 B
C
24 lines
453 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
void rust_helper___set_bit(unsigned long nr, unsigned long *addr)
|
|
{
|
|
__set_bit(nr, addr);
|
|
}
|
|
|
|
void rust_helper___clear_bit(unsigned long nr, unsigned long *addr)
|
|
{
|
|
__clear_bit(nr, addr);
|
|
}
|
|
|
|
void rust_helper_set_bit(unsigned long nr, volatile unsigned long *addr)
|
|
{
|
|
set_bit(nr, addr);
|
|
}
|
|
|
|
void rust_helper_clear_bit(unsigned long nr, volatile unsigned long *addr)
|
|
{
|
|
clear_bit(nr, addr);
|
|
}
|