/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_ALIGN_H #define _LINUX_ALIGN_H #include <linux/const.h> /* @a is a power of 2 value */ #define ALIGN(x, a) … #define ALIGN_DOWN(x, a) … #define __ALIGN_MASK(x, mask) … #define PTR_ALIGN(p, a) … #define PTR_ALIGN_DOWN(p, a) … #define IS_ALIGNED(x, a) … #endif /* _LINUX_ALIGN_H */