diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-22 08:29:22 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-22 08:29:22 +0100 |
| commit | f19ebc65a5df6268d37f5503e9bec71825f7e3aa (patch) | |
| tree | 4d8156cbb6be5b24655105784e3b0961ef8d27f6 /dev/Modules | |
| parent | 47a0e9b901e9e51b3f0ee5dd30d52ff1a5c8fcc0 (diff) | |
META: Switch copyright notice to 'EL Mahrouss Logic'
Diffstat (limited to 'dev/Modules')
| -rw-r--r-- | dev/Modules/ACPI/ACPI.h | 2 | ||||
| -rw-r--r-- | dev/Modules/ACPI/ACPIFactoryInterface.h | 2 | ||||
| -rw-r--r-- | dev/Modules/AHCI/AHCI.h | 6 | ||||
| -rw-r--r-- | dev/Modules/APM/APM.h | 2 | ||||
| -rw-r--r-- | dev/Modules/ATA/ATA.h | 12 | ||||
| -rw-r--r-- | dev/Modules/FB/FB.h | 2 | ||||
| -rw-r--r-- | dev/Modules/FB/Text.h | 2 | ||||
| -rw-r--r-- | dev/Modules/FB/WS.h | 2 | ||||
| -rw-r--r-- | dev/Modules/Flash/Flash.h | 2 | ||||
| -rw-r--r-- | dev/Modules/HPET/Defines.h | 2 | ||||
| -rw-r--r-- | dev/Modules/LTE/LTE.h | 2 | ||||
| -rw-r--r-- | dev/Modules/MBCI/Interface.h | 2 | ||||
| -rw-r--r-- | dev/Modules/MBCI/MBCI.h | 2 | ||||
| -rw-r--r-- | dev/Modules/NVME/NVME.h | 2 | ||||
| -rw-r--r-- | dev/Modules/ReadMe.md | 2 | ||||
| -rw-r--r-- | dev/Modules/SCSI/SCSI.h | 2 | ||||
| -rw-r--r-- | dev/Modules/WSGL/WSGL.h | 2 | ||||
| -rw-r--r-- | dev/Modules/XHCI/Defines.h | 2 |
18 files changed, 25 insertions, 25 deletions
diff --git a/dev/Modules/ACPI/ACPI.h b/dev/Modules/ACPI/ACPI.h index 3a895430..5e3a8ab4 100644 --- a/dev/Modules/ACPI/ACPI.h +++ b/dev/Modules/ACPI/ACPI.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/ACPI/ACPIFactoryInterface.h b/dev/Modules/ACPI/ACPIFactoryInterface.h index 42694792..24b49429 100644 --- a/dev/Modules/ACPI/ACPIFactoryInterface.h +++ b/dev/Modules/ACPI/ACPIFactoryInterface.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/AHCI/AHCI.h b/dev/Modules/AHCI/AHCI.h index 82e95b04..207c9166 100644 --- a/dev/Modules/AHCI/AHCI.h +++ b/dev/Modules/AHCI/AHCI.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. File: AHCI.h Purpose: AHCI protocol defines. @@ -343,7 +343,7 @@ Kernel::Boolean drv_std_detected(Kernel::Void); /// @param SectorSz /// @param Size /// @return -Kernel::Void drv_std_read(Kernel::UInt64 Lba, Kernel::Char* Buf, Kernel::SizeT SectorSz, Kernel::SizeT Size); +Kernel::Void drv_std_read(Kernel::UInt64 lba, Kernel::Char* buf, Kernel::SizeT sector_sz, Kernel::SizeT buf_sz); /// @brief Write to disk. /// @param Lba @@ -351,7 +351,7 @@ Kernel::Void drv_std_read(Kernel::UInt64 Lba, Kernel::Char* Buf, Kernel::SizeT S /// @param SectorSz /// @param Size /// @return -Kernel::Void drv_std_write(Kernel::UInt64 Lba, Kernel::Char* Buf, Kernel::SizeT SectorSz, Kernel::SizeT Size); +Kernel::Void drv_std_write(Kernel::UInt64 lba, Kernel::Char* buf, Kernel::SizeT sector_sz, Kernel::SizeT buf_sz); /// @brief get sector count. Kernel::SizeT drv_get_sector_count(); diff --git a/dev/Modules/APM/APM.h b/dev/Modules/APM/APM.h index 31128841..61fea20d 100644 --- a/dev/Modules/APM/APM.h +++ b/dev/Modules/APM/APM.h @@ -1,6 +1,6 @@ /* -------------------------------------------
- Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
+ Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.
------------------------------------------- */
diff --git a/dev/Modules/ATA/ATA.h b/dev/Modules/ATA/ATA.h index 719e0074..876db96b 100644 --- a/dev/Modules/ATA/ATA.h +++ b/dev/Modules/ATA/ATA.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. File: Defines.h Purpose: ATA header. @@ -134,17 +134,17 @@ enum #if defined(__ATA_PIO__) || defined(__ATA_DMA__) -Kernel::Boolean drv_std_init(Kernel::UInt16 Bus, Kernel::UInt8 Drive, Kernel::UInt16& OutBus, Kernel::UInt8& OutMaster); +Kernel::Boolean drv_std_init(Kernel::UInt16 _Input bus, Kernel::UInt8 _Input drive, Kernel::UInt16& _Output out_bus, Kernel::UInt8& _Output out_master); Kernel::Boolean drv_std_detected(Kernel::Void); -Kernel::Void drv_std_select(Kernel::UInt16 Bus); +Kernel::Void drv_std_select(Kernel::UInt16 bus); -Kernel::Boolean drv_std_wait_io(Kernel::UInt16 IO); +Kernel::Boolean drv_std_wait_io(Kernel::UInt16 io); -Kernel::Void drv_std_read(Kernel::UInt64 Lba, Kernel::UInt16 IO, Kernel::UInt8 Master, Kernel::Char* Buf, Kernel::SizeT SectorSz, Kernel::SizeT Size); +Kernel::Void drv_std_read(Kernel::UInt64 lba, Kernel::UInt16 io, Kernel::UInt8 is_master, Kernel::Char* buf, Kernel::SizeT sec_sz, Kernel::SizeT buf_sz); -Kernel::Void drv_std_write(Kernel::UInt64 Lba, Kernel::UInt16 IO, Kernel::UInt8 Master, Kernel::Char* Buf, Kernel::SizeT SectorSz, Kernel::SizeT Size); +Kernel::Void drv_std_write(Kernel::UInt64 lba, Kernel::UInt16 io, Kernel::UInt8 is_master, Kernel::Char* buf, Kernel::SizeT sec_sz, Kernel::SizeT buf_sz); /// @brief get sector count. Kernel::SizeT drv_get_sector_count(); diff --git a/dev/Modules/FB/FB.h b/dev/Modules/FB/FB.h index 359975c1..49ff2c6a 100644 --- a/dev/Modules/FB/FB.h +++ b/dev/Modules/FB/FB.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/FB/Text.h b/dev/Modules/FB/Text.h index 108f5268..abccb110 100644 --- a/dev/Modules/FB/Text.h +++ b/dev/Modules/FB/Text.h @@ -1,6 +1,6 @@ /* -------------------------------------------
- Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
+ Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.
------------------------------------------- */
diff --git a/dev/Modules/FB/WS.h b/dev/Modules/FB/WS.h index cfca3626..d8c5c991 100644 --- a/dev/Modules/FB/WS.h +++ b/dev/Modules/FB/WS.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/Flash/Flash.h b/dev/Modules/Flash/Flash.h index 34b43864..01fe7957 100644 --- a/dev/Modules/Flash/Flash.h +++ b/dev/Modules/Flash/Flash.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/HPET/Defines.h b/dev/Modules/HPET/Defines.h index 9dea62f5..2d040cdf 100644 --- a/dev/Modules/HPET/Defines.h +++ b/dev/Modules/HPET/Defines.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. File: HPET.h Purpose: HPET builtin. diff --git a/dev/Modules/LTE/LTE.h b/dev/Modules/LTE/LTE.h index a1069fdb..012d10c3 100644 --- a/dev/Modules/LTE/LTE.h +++ b/dev/Modules/LTE/LTE.h @@ -1,6 +1,6 @@ /* -------------------------------------------
-Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved..
+Copyright (C) 2024, EL Mahrouss Logic, all rights reserved..
File: LTE\LTE.h.
Purpose: LTE Standard Library.
diff --git a/dev/Modules/MBCI/Interface.h b/dev/Modules/MBCI/Interface.h index d200376d..d0d331d3 100644 --- a/dev/Modules/MBCI/Interface.h +++ b/dev/Modules/MBCI/Interface.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/MBCI/MBCI.h b/dev/Modules/MBCI/MBCI.h index 1600d7d7..9e4a8e12 100644 --- a/dev/Modules/MBCI/MBCI.h +++ b/dev/Modules/MBCI/MBCI.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/NVME/NVME.h b/dev/Modules/NVME/NVME.h index 6fc14ef6..a978dd20 100644 --- a/dev/Modules/NVME/NVME.h +++ b/dev/Modules/NVME/NVME.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. Revision History: diff --git a/dev/Modules/ReadMe.md b/dev/Modules/ReadMe.md index a7179eec..5bec0d73 100644 --- a/dev/Modules/ReadMe.md +++ b/dev/Modules/ReadMe.md @@ -4,4 +4,4 @@ They are pluggable modules for builtin hardware support. -###### Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. All rights reserved. +###### Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. All rights reserved. diff --git a/dev/Modules/SCSI/SCSI.h b/dev/Modules/SCSI/SCSI.h index 6f353c6f..738a9aa2 100644 --- a/dev/Modules/SCSI/SCSI.h +++ b/dev/Modules/SCSI/SCSI.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. ------------------------------------------- */ diff --git a/dev/Modules/WSGL/WSGL.h b/dev/Modules/WSGL/WSGL.h index a978eb92..47bf402f 100644 --- a/dev/Modules/WSGL/WSGL.h +++ b/dev/Modules/WSGL/WSGL.h @@ -1,6 +1,6 @@ /* -------------------------------------------
- Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
+ Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.
------------------------------------------- */
diff --git a/dev/Modules/XHCI/Defines.h b/dev/Modules/XHCI/Defines.h index 7f948128..aaf1b9e6 100644 --- a/dev/Modules/XHCI/Defines.h +++ b/dev/Modules/XHCI/Defines.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. File: Defines.h Purpose: XHCI (and backwards) header. |
