mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-14 19:53:03 +00:00
14 lines
276 B
C
14 lines
276 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
|
||
|
#ifndef __DSA_DEVLINK_H
|
||
|
#define __DSA_DEVLINK_H
|
||
|
|
||
|
struct dsa_port;
|
||
|
|
||
|
extern const struct devlink_ops dsa_devlink_ops;
|
||
|
|
||
|
int dsa_port_devlink_setup(struct dsa_port *dp);
|
||
|
void dsa_port_devlink_teardown(struct dsa_port *dp);
|
||
|
|
||
|
#endif
|