spec(reimaden): add platform support kernel module

This commit is contained in:
514fpv 2024-02-14 03:23:48 +08:00
parent fab58335a8
commit d7f7f85e1d
Signed by: koishi
SSH key fingerprint: SHA256:2jRvFSzG5UeUlQ3WxZ2sbUOfo5wNKzv1fZsk/FexKjQ
26 changed files with 2071 additions and 0 deletions

View file

@ -0,0 +1,7 @@
// SPDX-License-Identifier: GPL-2.0
#ifndef AC71_UTIL_H
#define AC71_UTIL_H
#define SET_BIT(value, bit, on) ((on) ? ((value) | (bit)) : ((value) & ~(bit)))
#endif /* AC71_UTIL_H */