diff options
| author | Amlal <amlal@nekernel.org> | 2025-05-08 08:48:57 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-05-08 08:48:57 +0200 |
| commit | a8782019a20f5487494e436f79b876b57f7229e1 (patch) | |
| tree | 311857e38359e2869286149ae0cc3f0c27efb4d7 /dev/modules | |
| parent | 1afe090bd504c4ec74b8c14c5aa6a520114b88ab (diff) | |
feat(tooling): update HeFS headers, and better HeFS tooling.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/modules')
| -rw-r--r-- | dev/modules/MBCI/MBCI.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dev/modules/MBCI/MBCI.h b/dev/modules/MBCI/MBCI.h index 37f802ec..99ecf802 100644 --- a/dev/modules/MBCI/MBCI.h +++ b/dev/modules/MBCI/MBCI.h @@ -100,12 +100,11 @@ typedef UInt32 MBCIAuthKeyType; inline BOOL busi_test_mmio(_Input struct IMBCIHost* host, _Input const UInt32 test) { host->MMIOTest = test; UInt16 timeout = 0UL; - + while (host->MMIOTest == test) { ++timeout; - if (timeout > 0x1000) - return NO; + if (timeout > 0x1000) return NO; } return host->MMIOTest == 0; |
