1e1189d9aSVadym Kochan /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */ 2e1189d9aSVadym Kochan /* Copyright (c) 2019-2020 Marvell International Ltd. All rights reserved. */ 3e1189d9aSVadym Kochan 4e1189d9aSVadym Kochan #ifndef _PRESTERA_SWITCHDEV_H_ 5e1189d9aSVadym Kochan #define _PRESTERA_SWITCHDEV_H_ 6e1189d9aSVadym Kochan 7e1189d9aSVadym Kochan int prestera_switchdev_init(struct prestera_switch *sw); 8e1189d9aSVadym Kochan void prestera_switchdev_fini(struct prestera_switch *sw); 9e1189d9aSVadym Kochan 10e1189d9aSVadym Kochan int prestera_bridge_port_event(struct net_device *dev, unsigned long event, 11e1189d9aSVadym Kochan void *ptr); 12e1189d9aSVadym Kochan 13e1189d9aSVadym Kochan #endif /* _PRESTERA_SWITCHDEV_H_ */ 14