Skip to content

Commit

Permalink
Switch PCI driver to intel_mp
Browse files Browse the repository at this point in the history
  • Loading branch information
wingo committed Sep 20, 2017
1 parent 2650bf0 commit 34a8156
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib/hardware/pci.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ devices = {}
--- * `device` id hex string e.g. `"0x10fb"` for 82599 chip.
--- * `interface` name of Linux interface using this device e.g. `"eth0"`.
--- * `status` string Linux operational status, or `nil` if not known.
--- * `driver` Lua module that supports this hardware e.g. `"intel10g"`.
--- * `driver` Lua module that supports this hardware e.g. `"intel_mp"`.
--- * `usable` device was suitable to use when scanned? `yes` or `no`

--- Initialize (or re-initialize) the `devices` table.
Expand Down Expand Up @@ -70,12 +70,12 @@ model = {
-- Supported cards indexed by vendor and device id.
local cards = {
["0x8086"] = {
["0x10fb"] = {model = model["82599_SFP"], driver = 'apps.intel.intel_app'},
["0x10d3"] = {model = model["82574L"], driver = 'apps.intel.intel_app'},
["0x105e"] = {model = model["82571"], driver = 'apps.intel.intel_app'},
["0x151c"] = {model = model["82599_T3"], driver = 'apps.intel.intel_app'},
["0x1528"] = {model = model["X540"], driver = 'apps.intel.intel_app'},
["0x154d"] = {model = model["X520"], driver = 'apps.intel.intel_app'},
["0x10fb"] = {model = model["82599_SFP"], driver = 'apps.intel_mp.intel_mp'},
["0x10d3"] = {model = model["82574L"], driver = 'apps.intel_mp.intel_mp'},
["0x105e"] = {model = model["82571"], driver = 'apps.intel_mp.intel_mp'},
["0x151c"] = {model = model["82599_T3"], driver = 'apps.intel_mp.intel_mp'},
["0x1528"] = {model = model["X540"], driver = 'apps.intel_mp.intel_mp'},
["0x154d"] = {model = model["X520"], driver = 'apps.intel_mp.intel_mp'},
["0x1521"] = {model = model["i350"], driver = 'apps.intel_mp.intel_mp'},
["0x1533"] = {model = model["i210"], driver = 'apps.intel_mp.intel_mp'},
["0x157b"] = {model = model["i210"], driver = 'apps.intel_mp.intel_mp'},
Expand Down

0 comments on commit 34a8156

Please sign in to comment.