From baafbc96300ad621584158eafab591c650b34bab Mon Sep 17 00:00:00 2001 From: "Myles \"Mellurboo\" Wilson" <102391892+Mellurboo@users.noreply.github.com> Date: Thu, 14 May 2026 01:11:15 +0100 Subject: [PATCH] updated copyright notices bit of a hastle on my end, still getting used to being this cool --- src/drivers/ACPI/acpi.c | 8 +++----- src/drivers/ACPI/acpi.h | 8 +++----- src/drivers/ACPI/acpi_aml.c | 8 +++----- src/drivers/ACPI/acpi_aml.h | 10 ++++------ src/drivers/ACPI/acpi_structures.h | 8 +++----- src/drivers/I2C/acpi_i2c.c | 8 +++----- src/drivers/I2C/acpi_i2c.h | 8 +++----- 7 files changed, 22 insertions(+), 36 deletions(-) diff --git a/src/drivers/ACPI/acpi.c b/src/drivers/ACPI/acpi.c index 70ea3d0..0e59a41 100644 --- a/src/drivers/ACPI/acpi.c +++ b/src/drivers/ACPI/acpi.c @@ -1,8 +1,6 @@ -/* - * Copyright (c) 2026 Myles "Mellurboo" Wilson - * Unauthorized copying or distribution is prohibited. - * Provided "as is" without warranty. -*/ +// Copyright (c) 2026 Myles Wilson (myles@bleedkernel.com) +// This software is released under the GNU General Public License v3.0. See LICENSE file for details. +// This header needs to maintain in any file it is present in, as per the GPL license terms. #include #include diff --git a/src/drivers/ACPI/acpi.h b/src/drivers/ACPI/acpi.h index 662a4e6..ae80890 100644 --- a/src/drivers/ACPI/acpi.h +++ b/src/drivers/ACPI/acpi.h @@ -1,8 +1,6 @@ -/* - * Copyright (c) 2026 Myles "Mellurboo" Wilson - * Unauthorized copying or distribution is prohibited. - * Provided "as is" without warranty. -*/ +// Copyright (c) 2026 Myles Wilson (myles@bleedkernel.com) +// This software is released under the GNU General Public License v3.0. See LICENSE file for details. +// This header needs to maintain in any file it is present in, as per the GPL license terms. #ifndef ACPI_H #define ACPI_H diff --git a/src/drivers/ACPI/acpi_aml.c b/src/drivers/ACPI/acpi_aml.c index 405fa6e..040d711 100644 --- a/src/drivers/ACPI/acpi_aml.c +++ b/src/drivers/ACPI/acpi_aml.c @@ -1,8 +1,6 @@ -/* - * Copyright (c) 2026 Myles "Mellurboo" Wilson - * Unauthorized copying or distribution is prohibited. - * Provided "as is" without warranty. -*/ +// Copyright (c) 2026 Myles Wilson (myles@bleedkernel.com) +// This software is released under the GNU General Public License v3.0. See LICENSE file for details. +// This header needs to maintain in any file it is present in, as per the GPL license terms. #include "acpi_aml.h" #include "kutils.h" diff --git a/src/drivers/ACPI/acpi_aml.h b/src/drivers/ACPI/acpi_aml.h index d7f3471..beb4fea 100644 --- a/src/drivers/ACPI/acpi_aml.h +++ b/src/drivers/ACPI/acpi_aml.h @@ -1,8 +1,6 @@ -/* - * Copyright (c) 2026 Myles "Mellurboo" Wilson - * Unauthorized copying or distribution is prohibited. - * Provided "as is" without warranty. -*/ +// Copyright (c) 2026 Myles Wilson (myles@bleedkernel.com) +// This software is released under the GNU General Public License v3.0. See LICENSE file for details. +// This header needs to maintain in any file it is present in, as per the GPL license terms. #ifndef ACPI_AML_H #define ACPI_AML_H @@ -49,7 +47,7 @@ typedef struct __attribute__((packed)) { /* GUID: 3cdff6f7-4267-4555-ad05-b30a3d8938de, mixed-endian AML layout - sorry i know its a magic number but tis the way of things :pensive: + sorry i know its a magic number but tis the way of things */ #define ACPI_I2C_HID_DSM_GUID \ "\xf7\xf6\xdf\x3c\x67\x42\x55\x45\xad\x05\xb3\x0a\x3d\x89\x38\xde" diff --git a/src/drivers/ACPI/acpi_structures.h b/src/drivers/ACPI/acpi_structures.h index 266a518..f7b682c 100644 --- a/src/drivers/ACPI/acpi_structures.h +++ b/src/drivers/ACPI/acpi_structures.h @@ -1,8 +1,6 @@ -/* - * Copyright (c) 2026 Myles "Mellurboo" Wilson - * Unauthorized copying or distribution is prohibited. - * Provided "as is" without warranty. -*/ +// Copyright (c) 2026 Myles Wilson (myles@bleedkernel.com) +// This software is released under the GNU General Public License v3.0. See LICENSE file for details. +// This header needs to maintain in any file it is present in, as per the GPL license terms. #ifndef ACPI_STRUCTURES_H #define ACPI_STRUCTURES_H diff --git a/src/drivers/I2C/acpi_i2c.c b/src/drivers/I2C/acpi_i2c.c index e365f2c..609be2a 100644 --- a/src/drivers/I2C/acpi_i2c.c +++ b/src/drivers/I2C/acpi_i2c.c @@ -1,8 +1,6 @@ -/* - * Copyright (c) 2026 Myles "Mellurboo" Wilson - * Unauthorized copying or distribution is prohibited. - * Provided "as is" without warranty. -*/ +// Copyright (c) 2026 Myles Wilson (myles@bleedkernel.com) +// This software is released under the GNU General Public License v3.0. See LICENSE file for details. +// This header needs to maintain in any file it is present in, as per the GPL license terms. #include "acpi_i2c.h" #include "../ACPI/acpi.h" diff --git a/src/drivers/I2C/acpi_i2c.h b/src/drivers/I2C/acpi_i2c.h index b28228f..a27832f 100644 --- a/src/drivers/I2C/acpi_i2c.h +++ b/src/drivers/I2C/acpi_i2c.h @@ -1,8 +1,6 @@ -/* - * Copyright (c) 2026 Myles "Mellurboo" Wilson - * Unauthorized copying or distribution is prohibited. - * Provided "as is" without warranty. -*/ +// Copyright (c) 2026 Myles Wilson (myles@bleedkernel.com) +// This software is released under the GNU General Public License v3.0. See LICENSE file for details. +// This header needs to maintain in any file it is present in, as per the GPL license terms. #ifndef ACPI_I2C_H #define ACPI_I2C_H