1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3 #ifndef __DSA_SWITCH_H 4 #define __DSA_SWITCH_H 5 6 struct dsa_switch; 7 8 int dsa_switch_register_notifier(struct dsa_switch *ds); 9 void dsa_switch_unregister_notifier(struct dsa_switch *ds); 10 11 #endif 12