diff --git a/Network/AMDPCNET/pcnet.cpp b/Network/AMDPCNET/pcnet.cpp index a27a41e..01b52f8 100644 --- a/Network/AMDPCNET/pcnet.cpp +++ b/Network/AMDPCNET/pcnet.cpp @@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = { .Bind = { .Type = BIND_PCI, .PCI = { - .VendorID = 0x1022, - .DeviceID = 0x2000, + .VendorID = {0x1022}, + .DeviceID = {0x2000}, .Class = 0x2, .SubClass = 0x0, .ProgIF = 0x0, diff --git a/Network/E1000/e1000.cpp b/Network/E1000/e1000.cpp index e22a121..ea269da 100644 --- a/Network/E1000/e1000.cpp +++ b/Network/E1000/e1000.cpp @@ -14,14 +14,14 @@ HEAD(FexFormatType_Driver, FexOSType_Fennix, DriverEntry); __attribute__((section(".extended"))) FexExtended ExtendedHeader = { .Driver = { - .Name = "E1000 Network Controller Driver", + .Name = "E1000 Network Controller", .Type = FexDriverType_Network, .Callback = CallbackHandler, .Bind = { .Type = BIND_PCI, .PCI = { - .VendorID = 0x8086, - .DeviceID = 0x100E, + .VendorID = {0x8086}, + .DeviceID = {0x100E}, .Class = 0x2, .SubClass = 0x0, .ProgIF = 0x0, diff --git a/Network/RTL8139/rtl8139.cpp b/Network/RTL8139/rtl8139.cpp index 9a13f5a..d4df6a6 100644 --- a/Network/RTL8139/rtl8139.cpp +++ b/Network/RTL8139/rtl8139.cpp @@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = { .Bind = { .Type = BIND_PCI, .PCI = { - .VendorID = 0x10EC, - .DeviceID = 0x8139, + .VendorID = {0x10EC}, + .DeviceID = {0x8139}, .Class = 0x2, .SubClass = 0x0, .ProgIF = 0x0, diff --git a/Network/RTL8169/rtl8169.cpp b/Network/RTL8169/rtl8169.cpp index 6056404..bb3f592 100644 --- a/Network/RTL8169/rtl8169.cpp +++ b/Network/RTL8169/rtl8169.cpp @@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = { .Bind = { .Type = BIND_PCI, .PCI = { - .VendorID = 0x10EC, - .DeviceID = 0x8169, + .VendorID = {0x10EC}, + .DeviceID = {0x8169}, .Class = 0x2, .SubClass = 0x0, .ProgIF = 0x0, diff --git a/Network/Virtio/Virtio.cpp b/Network/Virtio/Virtio.cpp index b1453b2..99dfde7 100644 --- a/Network/Virtio/Virtio.cpp +++ b/Network/Virtio/Virtio.cpp @@ -20,8 +20,8 @@ __attribute__((section(".extended"))) FexExtended ExtendedHeader = { .Bind = { .Type = BIND_PCI, .PCI = { - .VendorID = 0x1AF4, - .DeviceID = 0x1000, + .VendorID = {0x1AF4}, + .DeviceID = {0x1000}, .Class = 0x2, .SubClass = 0x0, .ProgIF = 0x0,