diff options
| author | Amlal <amlal@el-mahrouss-logic.com> | 2024-10-24 16:53:42 +0200 |
|---|---|---|
| committer | Amlal <amlal@el-mahrouss-logic.com> | 2024-10-24 16:53:42 +0200 |
| commit | 6e3be96bb9a9b3047aee59da639819453eaab6ac (patch) | |
| tree | f690833cefc4e041c0964bc831fc6dd32ea14eef /dev/zba/BootKit | |
| parent | 08e69a55cfda4722277d16ddb632669edde3580b (diff) | |
IMP: Pushing important code.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/zba/BootKit')
| -rw-r--r-- | dev/zba/BootKit/BitManip.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/zba/BootKit/BitManip.h b/dev/zba/BootKit/BitManip.h index ad893b02..bb52b172 100644 --- a/dev/zba/BootKit/BitManip.h +++ b/dev/zba/BootKit/BitManip.h @@ -7,8 +7,8 @@ #ifndef __BITMANIP_H__ #define __BITMANIP_H__ -/// Name: Bits API. -/// Purpose: Bit manip helpers, based on CoreBoot header. +/// File: BitManip.h +/// Purpose: Bit manipulation helpers, based on coreboot-dev. #define bk_set_bit(X, O) X = (1 << O) | X #define bk_clear_bit(X, O) X = ~(1 << O) & X |
