summaryrefslogtreecommitdiffhomepage
path: root/dev/zba/BootKit
diff options
context:
space:
mode:
authorAmlal <amlal@el-mahrouss-logic.com>2024-10-24 16:53:42 +0200
committerAmlal <amlal@el-mahrouss-logic.com>2024-10-24 16:53:42 +0200
commit6e3be96bb9a9b3047aee59da639819453eaab6ac (patch)
treef690833cefc4e041c0964bc831fc6dd32ea14eef /dev/zba/BootKit
parent08e69a55cfda4722277d16ddb632669edde3580b (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.h4
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