From d4583edb221eb7297bcbc6f0febe895a96fed5f7 Mon Sep 17 00:00:00 2001 From: Aaro Koskinen Date: Mon, 12 Oct 2015 16:12:33 +0300 Subject: [PATCH] staging: octeon-ethernet: xaui: don't register poll function in init Link status poll function is already controlled by open/stop functions, so we don't need to do it on init. This eliminates a redundant xaui link status notification when the module is loaded. Signed-off-by: Aaro Koskinen Signed-off-by: Greg Kroah-Hartman --- drivers/staging/octeon/ethernet-xaui.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/staging/octeon/ethernet-xaui.c b/drivers/staging/octeon/ethernet-xaui.c index 4b47bcfaabb1..9097edf10230 100644 --- a/drivers/staging/octeon/ethernet-xaui.c +++ b/drivers/staging/octeon/ethernet-xaui.c @@ -32,11 +32,7 @@ int cvm_oct_xaui_open(struct net_device *dev) int cvm_oct_xaui_init(struct net_device *dev) { - struct octeon_ethernet *priv = netdev_priv(dev); - cvm_oct_common_init(dev); - if (!octeon_is_simulation() && priv->phydev == NULL) - priv->poll = cvm_oct_link_poll; return 0; } -- 2.39.5