From 1777ca215039b12ef16aba8ed54730b35246965f Mon Sep 17 00:00:00 2001 From: antifallobst Date: Fri, 28 Apr 2023 19:00:43 +0200 Subject: [PATCH] refacotr (ahci): moved ahci.h from src to inc ^^ --- {src => inc}/drivers/ahci.h | 0 src/drivers/ahci.c | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {src => inc}/drivers/ahci.h (100%) diff --git a/src/drivers/ahci.h b/inc/drivers/ahci.h similarity index 100% rename from src/drivers/ahci.h rename to inc/drivers/ahci.h diff --git a/src/drivers/ahci.c b/src/drivers/ahci.c index f387a16..7facbd7 100644 --- a/src/drivers/ahci.c +++ b/src/drivers/ahci.c @@ -1,3 +1,3 @@ // This file is part of noxos and licensed under the MIT open source license -#include "ahci.h" +#include "drivers/ahci.h"