1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Renesas Ethernet Switch device driver 3 * 4 * Copyright (C) 2025 Renesas Electronics Corporation 5 */ 6 7 #ifndef __RSWITCH_L2_H__ 8 #define __RSWITCH_L2_H__ 9 10 void rswitch_update_l2_offload(struct rswitch_private *priv); 11 12 int rswitch_register_notifiers(void); 13 void rswitch_unregister_notifiers(void); 14 15 #endif /* #ifndef __RSWITCH_L2_H__ */ 16