mirror of
https://github.com/torvalds/linux.git
synced 2025-11-03 10:10:33 +02:00
Register auxiliary module to create ibdevice for ionic ethernet adapter. Co-developed-by: Andrew Boyer <andrew.boyer@amd.com> Signed-off-by: Andrew Boyer <andrew.boyer@amd.com> Co-developed-by: Allen Hubbe <allen.hubbe@amd.com> Signed-off-by: Allen Hubbe <allen.hubbe@amd.com> Signed-off-by: Abhijit Gangurde <abhijit.gangurde@amd.com> Link: https://patch.msgid.link/20250903061606.4139957-9-abhijit.gangurde@amd.com Signed-off-by: Leon Romanovsky <leon@kernel.org>
18 lines
339 B
C
18 lines
339 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2018-2025, Advanced Micro Devices, Inc. */
|
|
|
|
#ifndef _IONIC_IBDEV_H_
|
|
#define _IONIC_IBDEV_H_
|
|
|
|
#include <rdma/ib_verbs.h>
|
|
#include <ionic_api.h>
|
|
|
|
#include "ionic_lif_cfg.h"
|
|
|
|
struct ionic_ibdev {
|
|
struct ib_device ibdev;
|
|
|
|
struct ionic_lif_cfg lif_cfg;
|
|
};
|
|
|
|
#endif /* _IONIC_IBDEV_H_ */
|