Updated driver header

This commit is contained in:
Alex 2022-11-01 04:00:43 +02:00
parent 4a3a7f1827
commit 4969e1fee0
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
5 changed files with 11 additions and 11 deletions

View File

@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = {
.Bind = { .Bind = {
.Type = BIND_PCI, .Type = BIND_PCI,
.PCI = { .PCI = {
.VendorID = 0x1022, .VendorID = {0x1022},
.DeviceID = 0x2000, .DeviceID = {0x2000},
.Class = 0x2, .Class = 0x2,
.SubClass = 0x0, .SubClass = 0x0,
.ProgIF = 0x0, .ProgIF = 0x0,

View File

@ -14,14 +14,14 @@ HEAD(FexFormatType_Driver, FexOSType_Fennix, DriverEntry);
__attribute__((section(".extended"))) FexExtended ExtendedHeader = { __attribute__((section(".extended"))) FexExtended ExtendedHeader = {
.Driver = { .Driver = {
.Name = "E1000 Network Controller Driver", .Name = "E1000 Network Controller",
.Type = FexDriverType_Network, .Type = FexDriverType_Network,
.Callback = CallbackHandler, .Callback = CallbackHandler,
.Bind = { .Bind = {
.Type = BIND_PCI, .Type = BIND_PCI,
.PCI = { .PCI = {
.VendorID = 0x8086, .VendorID = {0x8086},
.DeviceID = 0x100E, .DeviceID = {0x100E},
.Class = 0x2, .Class = 0x2,
.SubClass = 0x0, .SubClass = 0x0,
.ProgIF = 0x0, .ProgIF = 0x0,

View File

@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = {
.Bind = { .Bind = {
.Type = BIND_PCI, .Type = BIND_PCI,
.PCI = { .PCI = {
.VendorID = 0x10EC, .VendorID = {0x10EC},
.DeviceID = 0x8139, .DeviceID = {0x8139},
.Class = 0x2, .Class = 0x2,
.SubClass = 0x0, .SubClass = 0x0,
.ProgIF = 0x0, .ProgIF = 0x0,

View File

@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = {
.Bind = { .Bind = {
.Type = BIND_PCI, .Type = BIND_PCI,
.PCI = { .PCI = {
.VendorID = 0x10EC, .VendorID = {0x10EC},
.DeviceID = 0x8169, .DeviceID = {0x8169},
.Class = 0x2, .Class = 0x2,
.SubClass = 0x0, .SubClass = 0x0,
.ProgIF = 0x0, .ProgIF = 0x0,

View File

@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = {
.Bind = { .Bind = {
.Type = BIND_PCI, .Type = BIND_PCI,
.PCI = { .PCI = {
.VendorID = 0x1AF4, .VendorID = {0x1AF4},
.DeviceID = 0x1000, .DeviceID = {0x1000},
.Class = 0x2, .Class = 0x2,
.SubClass = 0x0, .SubClass = 0x0,
.ProgIF = 0x0, .ProgIF = 0x0,