mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

This patch adds the beginning framework onto which I am going to add the igc driver which supports the Intel(R) I225-LM/I225-V 2.5G Ethernet Controller. Signed-off-by: Sasha Neftin <sasha.neftin@intel.com> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
10 lines
219 B
C
10 lines
219 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018 Intel Corporation */
|
|
|
|
#ifndef _IGC_HW_H_
|
|
#define _IGC_HW_H_
|
|
|
|
#define IGC_DEV_ID_I225_LM 0x15F2
|
|
#define IGC_DEV_ID_I225_V 0x15F3
|
|
|
|
#endif /* _IGC_HW_H_ */
|