summaryrefslogtreecommitdiffhomepage
path: root/src/modules
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-11 16:20:44 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-11 16:20:44 +0100
commit269012b320d0b81df07a78c1082a9f7b2f106df3 (patch)
treef48838abcf4308acbd05de7c0508792ca8be88ce /src/modules
parente166267015cf0f05161383bf9e1c37cce072d06c (diff)
[CHORE] Add SPDX header for files.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/ACPI/ACPI.h4
-rw-r--r--src/modules/ACPI/ACPIFactoryInterface.h4
-rw-r--r--src/modules/AHCI/AHCI.h4
-rw-r--r--src/modules/APM/APM.h4
-rw-r--r--src/modules/ATA/ATA.h4
-rw-r--r--src/modules/CoreGfx/CoreGfx.h4
-rw-r--r--src/modules/CoreGfx/TextGfx.h4
-rw-r--r--src/modules/MBCI/MBCI.h4
-rw-r--r--src/modules/NVME/NVME.h4
-rw-r--r--src/modules/Power/PowerFactory.h4
-rw-r--r--src/modules/SCSI/SCSI.h4
-rw-r--r--src/modules/XHCI/XHCI.h4
12 files changed, 24 insertions, 24 deletions
diff --git a/src/modules/ACPI/ACPI.h b/src/modules/ACPI/ACPI.h
index dad08c70..677f9ecd 100644
--- a/src/modules/ACPI/ACPI.h
+++ b/src/modules/ACPI/ACPI.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef __ACPI__
#define __ACPI__
diff --git a/src/modules/ACPI/ACPIFactoryInterface.h b/src/modules/ACPI/ACPIFactoryInterface.h
index 0c1f1816..f82497d5 100644
--- a/src/modules/ACPI/ACPIFactoryInterface.h
+++ b/src/modules/ACPI/ACPIFactoryInterface.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef __MOD_ACPI_H__
#define __MOD_ACPI_H__
diff --git a/src/modules/AHCI/AHCI.h b/src/modules/AHCI/AHCI.h
index ae703d27..eb86b82b 100644
--- a/src/modules/AHCI/AHCI.h
+++ b/src/modules/AHCI/AHCI.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef AHCI_AHCI_H
#define AHCI_AHCI_H
diff --git a/src/modules/APM/APM.h b/src/modules/APM/APM.h
index e8de763e..91aea26b 100644
--- a/src/modules/APM/APM.h
+++ b/src/modules/APM/APM.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef APM_APM_H
#define APM_APM_H
diff --git a/src/modules/ATA/ATA.h b/src/modules/ATA/ATA.h
index 617f789f..177bdb11 100644
--- a/src/modules/ATA/ATA.h
+++ b/src/modules/ATA/ATA.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef ATA_ATA_H
#define ATA_ATA_H
diff --git a/src/modules/CoreGfx/CoreGfx.h b/src/modules/CoreGfx/CoreGfx.h
index c7ce3d4c..55a8bb72 100644
--- a/src/modules/CoreGfx/CoreGfx.h
+++ b/src/modules/CoreGfx/CoreGfx.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef COREGFX_COREGFX_H
#define COREGFX_COREGFX_H
diff --git a/src/modules/CoreGfx/TextGfx.h b/src/modules/CoreGfx/TextGfx.h
index b29d7ff7..403e4fa8 100644
--- a/src/modules/CoreGfx/TextGfx.h
+++ b/src/modules/CoreGfx/TextGfx.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef COREGFX_TEXTGFX_H
#define COREGFX_TEXTGFX_H
diff --git a/src/modules/MBCI/MBCI.h b/src/modules/MBCI/MBCI.h
index 26bf7a85..a22e0f1a 100644
--- a/src/modules/MBCI/MBCI.h
+++ b/src/modules/MBCI/MBCI.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef _INC_MODULE_MBCI_H_
#define _INC_MODULE_MBCI_H_
diff --git a/src/modules/NVME/NVME.h b/src/modules/NVME/NVME.h
index f6c6c254..46bf2157 100644
--- a/src/modules/NVME/NVME.h
+++ b/src/modules/NVME/NVME.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef __MODULE_NVME_H__
#define __MODULE_NVME_H__
diff --git a/src/modules/Power/PowerFactory.h b/src/modules/Power/PowerFactory.h
index 1254a475..f8a0eda8 100644
--- a/src/modules/Power/PowerFactory.h
+++ b/src/modules/Power/PowerFactory.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef POWER_POWERFACTORY_H
#define POWER_POWERFACTORY_H
diff --git a/src/modules/SCSI/SCSI.h b/src/modules/SCSI/SCSI.h
index cdc89b11..ee75cc0d 100644
--- a/src/modules/SCSI/SCSI.h
+++ b/src/modules/SCSI/SCSI.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef SCSI_SCSI_H
#define SCSI_SCSI_H
diff --git a/src/modules/XHCI/XHCI.h b/src/modules/XHCI/XHCI.h
index de5d9613..b87492fa 100644
--- a/src/modules/XHCI/XHCI.h
+++ b/src/modules/XHCI/XHCI.h
@@ -1,7 +1,7 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-
#ifndef XHCI_XHCI_H
#define XHCI_XHCI_H