mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-05 11:53:41 +00:00

In preparation of supporting more than a single core PCI driver for RDMA, break the iidc_rdma.h header file into two more focused headers. Only the elements universal to all Intel drivers will remain in the generic iidc_rdma.h header. Move the ice specific information to an ice specific header file named iidc_rdma_ice.h. Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Signed-off-by: Dave Ertman <david.m.ertman@intel.com> Signed-off-by: Tatyana Nikolova <tatyana.e.nikolova@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
15 lines
342 B
C
15 lines
342 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_rdma.h>
|
|
#include <linux/net/intel/iidc_rdma_ice.h>
|
|
|
|
struct ice_pf;
|
|
|
|
void ice_send_event_to_aux(struct ice_pf *pf, struct iidc_rdma_event *event);
|
|
|
|
#endif /* !_ICE_IDC_INT_H_ */
|