mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
fd325cd648
In preparation to add MANA RDMA driver, move all the required header files to a common location for use by both Ethernet and RDMA drivers. Reviewed-by: Dexuan Cui <decui@microsoft.com> Signed-off-by: Long Li <longli@microsoft.com> Link: https://lore.kernel.org/r/1667502990-2559-8-git-send-email-longli@linuxonhyperv.com Acked-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
11 lines
223 B
C
11 lines
223 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2022, Microsoft Corporation. */
|
|
|
|
#include "mana.h"
|
|
#include <linux/auxiliary_bus.h>
|
|
|
|
struct mana_adev {
|
|
struct auxiliary_device adev;
|
|
struct gdma_dev *mdev;
|
|
};
|