2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
#ifndef __VDSO_BITS_H
|
|
|
|
|
#define __VDSO_BITS_H
|
|
|
|
|
|
|
|
|
|
#include <vdso/const.h>
|
|
|
|
|
|
|
|
|
|
#define BIT(nr) (UL(1) << (nr))
|
2026-01-29 22:25:33 +08:00
|
|
|
#define BIT_ULL(nr) (ULL(1) << (nr))
|
2026-01-21 18:59:54 +08:00
|
|
|
|
|
|
|
|
#endif /* __VDSO_BITS_H */
|