From 5c15e93fa87800b1f8fae7ef688a9d41221526f1 Mon Sep 17 00:00:00 2001 From: Nathan Lee Date: Fri, 19 Jun 2026 19:05:01 -0500 Subject: create dtb allocator the parent commit (b106df2447d23d6b3fcffa7cc87edde218d054f3) discussed the possibility of creating dtb device discovery. for that, we have replaced wdt device discovery with dtb device discovery. in the future, we will use the pci kernel module to use device discovery via a PCI controller --- include/wdt.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 include/wdt.h (limited to 'include/wdt.h') diff --git a/include/wdt.h b/include/wdt.h deleted file mode 100644 index 31739ab..0000000 --- a/include/wdt.h +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once -#include - -#define WDT_MAGIC 0x67674141 - -struct wdt_device { - uint32_t type; - uint32_t driver_id; - uint32_t start; - uint32_t size; -}; - -struct wdt_root { - uint32_t magic; - uint32_t count; - struct wdt_device devices[]; -}; - -- cgit v1.2.3