// SPDX-License-Identifier: GPL-2.0-only struct notifier_block; #include "notifier.h" int register_netdevice_notifier(struct notifier_block *nb) { (void) nb; return 0; } int unregister_netdevice_notifier(struct notifier_block *nb) { (void) nb; return 0; }