From 6e3be96bb9a9b3047aee59da639819453eaab6ac Mon Sep 17 00:00:00 2001 From: Amlal Date: Thu, 24 Oct 2024 16:53:42 +0200 Subject: IMP: Pushing important code. Signed-off-by: Amlal --- dev/zba/BootKit/BitManip.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/zba') 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 -- cgit v1.2.3