changeset 823:850cc6a5d480

Add 82546 devid
author msalter
date Tue, 11 Mar 2003 19:56:15 +0000
parents 060f6b8274f3
children 627a52d44b44
files packages/devs/eth/intel/i82544/current/ChangeLog packages/devs/eth/intel/i82544/current/src/if_i82544.c
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/packages/devs/eth/intel/i82544/current/ChangeLog
+++ b/packages/devs/eth/intel/i82544/current/ChangeLog
@@ -1,3 +1,7 @@
+2003-03-11  Mark Salter  <msalter@redhat.com>
+
+	* src/if_i82544.c (find_82544s_match_func): Add 82546 devid.
+
 2003-02-05  Nick Garnett  <nickg@calivar.com>
 
 	* src/if_i82544.c (BUS_TO_VIRT): Added default definition of this
--- a/packages/devs/eth/intel/i82544/current/src/if_i82544.c
+++ b/packages/devs/eth/intel/i82544/current/src/if_i82544.c
@@ -8,7 +8,7 @@
 //####ECOSGPLCOPYRIGHTBEGIN####
 // -------------------------------------------
 // This file is part of eCos, the Embedded Configurable Operating System.
-// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
+// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Red Hat, Inc.
 //
 // eCos is free software; you can redistribute it and/or modify it under
 // the terms of the GNU General Public License as published by the Free
@@ -2442,7 +2442,8 @@ find_82544s_match_func( cyg_uint16 v, cy
     return ((0x8086 == v) &&
             ((0x1004 == d) ||   // 82543
              (0x100d == d) ||   // 82543
-             (0x1008 == d)      // 82544
+             (0x1008 == d) ||   // 82544
+             (0x1010 == d)      // 82546
             )
            );
 }