diff options
author | Gabriel L. Somlo <gsomlo@gmail.com> | 2014-06-02 09:33:29 -0400 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-06-09 15:38:58 +0200 |
commit | 7efea763772c815ad6220d5ea7a46447329f6015 (patch) | |
tree | 6b902a86d77c1f023063416f9bb001b6ff75ddab /tests/e1000-test.c | |
parent | b167383ffbe995c6d48fbe8ca2bab5eb667e45dc (diff) |
e1000: remove broken support for 82573L
Currently, e1000 support is based on the manual for the 8254xx
model series. 82573x models are documented in a separate manual
(see http://www.intel.com/content/dam/www/public/us/en/documents/manuals/pcie-gbe-controllers-open-source-manual.pdf)
and the 82573L device ID no longer works correctly on either Linux
(3.14.*) or Windows 7.
This patch removes stale code claiming to support 82573L, cleaning
up the code base for the remaining 8254xx model series.
Signed-off-by: Gabriel Somlo <somlo@cmu.edu>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests/e1000-test.c')
-rw-r--r-- | tests/e1000-test.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/e1000-test.c b/tests/e1000-test.c index 53c41f8fd4..81f164d9e9 100644 --- a/tests/e1000-test.c +++ b/tests/e1000-test.c @@ -33,7 +33,6 @@ static const char *models[] = { "e1000-82540em", "e1000-82544gc", "e1000-82545em", - "e1000-82573l", }; int main(int argc, char **argv) |