This patch adds the basic defines and structures needed by the PF for operation. With this it is possible to bring up the interface, but without being able to configure any of the filters on the interface itself. Add skeleton for a function pointers. 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
258 B
C
10 lines
258 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018 Intel Corporation */
|
|
|
|
#ifndef _IGC_I225_H_
|
|
#define _IGC_I225_H_
|
|
|
|
s32 igc_acquire_swfw_sync_i225(struct igc_hw *hw, u16 mask);
|
|
void igc_release_swfw_sync_i225(struct igc_hw *hw, u16 mask);
|
|
|
|
#endif
|