mirror of
https://github.com/torvalds/linux.git
synced 2026-04-27 11:02:31 -04:00
To support RDMA capable ethernet device, create an auxiliary device in the ionic Ethernet driver. The RDMA device is modeled as an auxiliary device to the Ethernet device. Reviewed-by: Shannon Nelson <shannon.nelson@amd.com> Signed-off-by: Abhijit Gangurde <abhijit.gangurde@amd.com> Link: https://patch.msgid.link/20250903061606.4139957-2-abhijit.gangurde@amd.com Signed-off-by: Leon Romanovsky <leon@kernel.org>
11 lines
276 B
C
11 lines
276 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2018-2025, Advanced Micro Devices, Inc. */
|
|
|
|
#ifndef _IONIC_AUX_H_
|
|
#define _IONIC_AUX_H_
|
|
|
|
int ionic_auxbus_register(struct ionic_lif *lif);
|
|
void ionic_auxbus_unregister(struct ionic_lif *lif);
|
|
|
|
#endif /* _IONIC_AUX_H_ */
|