mirror of
https://github.com/Fennix-Project/Drivers.git
synced 2025-07-10 14:49:25 +00:00
Typo
This commit is contained in:
@ -94,7 +94,7 @@ int CallbackHandler(KernelCallback *Data)
|
||||
}
|
||||
case ConfigurationReason:
|
||||
{
|
||||
print("Kernel received configuration data.");
|
||||
print("Driver received configuration data.");
|
||||
PCIBaseAddress = reinterpret_cast<PCIDeviceHeader *>(Data->RawPtr);
|
||||
if (PCIBaseAddress->VendorID == 0x1022 && PCIBaseAddress->DeviceID == 0x2000)
|
||||
{
|
||||
|
@ -342,7 +342,7 @@ int CallbackHandler(KernelCallback *Data)
|
||||
}
|
||||
case ConfigurationReason:
|
||||
{
|
||||
print("Kernel received configuration data.");
|
||||
print("Driver received configuration data.");
|
||||
PCIBaseAddress = reinterpret_cast<PCIDeviceHeader *>(Data->RawPtr);
|
||||
switch (PCIBaseAddress->DeviceID)
|
||||
{
|
||||
|
@ -136,7 +136,7 @@ int CallbackHandler(KernelCallback *Data)
|
||||
}
|
||||
case ConfigurationReason:
|
||||
{
|
||||
print("Kernel received configuration data.");
|
||||
print("Driver received configuration data.");
|
||||
PCIBaseAddress = reinterpret_cast<PCIDeviceHeader *>(Data->RawPtr);
|
||||
if (PCIBaseAddress->VendorID == 0x10EC && PCIBaseAddress->DeviceID == 0x8139)
|
||||
{
|
||||
|
@ -67,7 +67,7 @@ int CallbackHandler(KernelCallback *Data)
|
||||
}
|
||||
case ConfigurationReason:
|
||||
{
|
||||
print("Kernel received configuration data.");
|
||||
print("Driver received configuration data.");
|
||||
PCIBaseAddress = reinterpret_cast<PCIDeviceHeader *>(Data->RawPtr);
|
||||
if (PCIBaseAddress->VendorID == 0x10EC && PCIBaseAddress->DeviceID == 0x8169)
|
||||
{
|
||||
|
@ -67,7 +67,7 @@ int CallbackHandler(KernelCallback *Data)
|
||||
}
|
||||
case ConfigurationReason:
|
||||
{
|
||||
print("Kernel received configuration data.");
|
||||
print("Driver received configuration data.");
|
||||
PCIBaseAddress = reinterpret_cast<PCIDeviceHeader *>(Data->RawPtr);
|
||||
if (PCIBaseAddress->VendorID == 0x1AF4 && PCIBaseAddress->DeviceID == 0x1000)
|
||||
{
|
||||
|
@ -50,7 +50,7 @@ int CallbackHandler(KernelCallback *Data)
|
||||
}
|
||||
case ConfigurationReason:
|
||||
{
|
||||
print("Kernel received configuration data.");
|
||||
print("Driver received configuration data.");
|
||||
break;
|
||||
}
|
||||
case FetchReason:
|
||||
|
Reference in New Issue
Block a user