From: Valentin Longchamp
Date: Wed, 3 Jun 2020 23:15:27 +0200
> @@ -464,6 +464,7 @@ void __netdev_watchdog_up(struct net_device *dev)
> dev_hold(dev);
> }
> }
> +EXPORT_SYMBOL(__netdev_watchdog_up);
Please use EXPORT_SYMBOL_GPL(), thank you.
Since the quiesce/activate rework, __netdev_watchdog_up() is directly
called in the ucc_geth driver.
Unfortunately, this function is not available for modules and thus
ucc_geth cannot be built as a module anymore. Fix it by exporting
__netdev_watchdog_up().
Since the commit introducing the regres