mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-27 21:14:44 +08:00
348048e724
Add implementations for supporting iidc operations for device operation such as allocation of resources and event notifications. Signed-off-by: Dave Ertman <david.m.ertman@intel.com> Signed-off-by: Shiraz Saleem <shiraz.saleem@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
15 lines
306 B
C
15 lines
306 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2021, Intel Corporation. */
|
|
|
|
#ifndef _ICE_IDC_INT_H_
|
|
#define _ICE_IDC_INT_H_
|
|
|
|
#include <linux/net/intel/iidc.h>
|
|
#include "ice.h"
|
|
|
|
struct ice_pf;
|
|
|
|
void ice_send_event_to_aux(struct ice_pf *pf, struct iidc_event *event);
|
|
|
|
#endif /* !_ICE_IDC_INT_H_ */
|