e1000_api.c (51569bd793756dac42a370221f89b52b4b080af7) | e1000_api.c (59690eab572dde1176886bff7ed0c506df974e5e) |
---|---|
1/****************************************************************************** 2 SPDX-License-Identifier: BSD-3-Clause 3 4 Copyright (c) 2001-2015, Intel Corporation 5 All rights reserved. 6 7 Redistribution and use in source and binary forms, with or without 8 modification, are permitted provided that the following conditions are met: --- 313 unchanged lines hidden (view full) --- 322 case E1000_DEV_ID_PCH_ICP_I219_LM9: 323 case E1000_DEV_ID_PCH_ICP_I219_V9: 324 case E1000_DEV_ID_PCH_CMP_I219_LM10: 325 case E1000_DEV_ID_PCH_CMP_I219_V10: 326 case E1000_DEV_ID_PCH_CMP_I219_LM11: 327 case E1000_DEV_ID_PCH_CMP_I219_V11: 328 mac->type = e1000_pch_cnp; 329 break; | 1/****************************************************************************** 2 SPDX-License-Identifier: BSD-3-Clause 3 4 Copyright (c) 2001-2015, Intel Corporation 5 All rights reserved. 6 7 Redistribution and use in source and binary forms, with or without 8 modification, are permitted provided that the following conditions are met: --- 313 unchanged lines hidden (view full) --- 322 case E1000_DEV_ID_PCH_ICP_I219_LM9: 323 case E1000_DEV_ID_PCH_ICP_I219_V9: 324 case E1000_DEV_ID_PCH_CMP_I219_LM10: 325 case E1000_DEV_ID_PCH_CMP_I219_V10: 326 case E1000_DEV_ID_PCH_CMP_I219_LM11: 327 case E1000_DEV_ID_PCH_CMP_I219_V11: 328 mac->type = e1000_pch_cnp; 329 break; |
330 case E1000_DEV_ID_PCH_TGP_I219_LM13: 331 case E1000_DEV_ID_PCH_TGP_I219_V13: 332 case E1000_DEV_ID_PCH_TGP_I219_LM14: 333 case E1000_DEV_ID_PCH_TGP_I219_V14: 334 case E1000_DEV_ID_PCH_TGP_I219_LM15: 335 case E1000_DEV_ID_PCH_TGP_I219_V15: 336 mac->type = e1000_pch_tgp; 337 break; 338 case E1000_DEV_ID_PCH_ADL_I219_LM16: 339 case E1000_DEV_ID_PCH_ADL_I219_V16: 340 case E1000_DEV_ID_PCH_ADL_I219_LM17: 341 case E1000_DEV_ID_PCH_ADL_I219_V17: 342 mac->type = e1000_pch_adp; 343 break; 344 case E1000_DEV_ID_PCH_MTP_I219_LM18: 345 case E1000_DEV_ID_PCH_MTP_I219_V18: 346 case E1000_DEV_ID_PCH_MTP_I219_LM19: 347 case E1000_DEV_ID_PCH_MTP_I219_V19: 348 mac->type = e1000_pch_mtp; 349 break; |
|
330 case E1000_DEV_ID_82575EB_COPPER: 331 case E1000_DEV_ID_82575EB_FIBER_SERDES: 332 case E1000_DEV_ID_82575GB_QUAD_COPPER: 333 mac->type = e1000_82575; 334 break; 335 case E1000_DEV_ID_82576: 336 case E1000_DEV_ID_82576_FIBER: 337 case E1000_DEV_ID_82576_SERDES: --- 136 unchanged lines hidden (view full) --- 474 case e1000_ich8lan: 475 case e1000_ich9lan: 476 case e1000_ich10lan: 477 case e1000_pchlan: 478 case e1000_pch2lan: 479 case e1000_pch_lpt: 480 case e1000_pch_spt: 481 case e1000_pch_cnp: | 350 case E1000_DEV_ID_82575EB_COPPER: 351 case E1000_DEV_ID_82575EB_FIBER_SERDES: 352 case E1000_DEV_ID_82575GB_QUAD_COPPER: 353 mac->type = e1000_82575; 354 break; 355 case E1000_DEV_ID_82576: 356 case E1000_DEV_ID_82576_FIBER: 357 case E1000_DEV_ID_82576_SERDES: --- 136 unchanged lines hidden (view full) --- 494 case e1000_ich8lan: 495 case e1000_ich9lan: 496 case e1000_ich10lan: 497 case e1000_pchlan: 498 case e1000_pch2lan: 499 case e1000_pch_lpt: 500 case e1000_pch_spt: 501 case e1000_pch_cnp: |
502 case e1000_pch_tgp: 503 case e1000_pch_adp: 504 case e1000_pch_mtp: |
|
482 e1000_init_function_pointers_ich8lan(hw); 483 break; 484 case e1000_82575: 485 case e1000_82576: 486 case e1000_82580: 487 case e1000_i350: 488 case e1000_i354: 489 e1000_init_function_pointers_82575(hw); --- 905 unchanged lines hidden --- | 505 e1000_init_function_pointers_ich8lan(hw); 506 break; 507 case e1000_82575: 508 case e1000_82576: 509 case e1000_82580: 510 case e1000_i350: 511 case e1000_i354: 512 e1000_init_function_pointers_82575(hw); --- 905 unchanged lines hidden --- |