From: Alexey Dobriyan Date: Tue, 9 Dec 2008 07:50:18 +0000 (-0800) Subject: hydra: fix compilation X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e42130039c85826567d4e4864f2c7492578576cb;p=linux-beck.git hydra: fix compilation drivers/net/hydra.c:163: error: 'hydra_netdev_ops' undeclared (first use in this function) Signed-off-by: Alexey Dobriyan Signed-off-by: David S. Miller --- diff --git a/drivers/net/hydra.c b/drivers/net/hydra.c index b9198023f628..9cb38a8d4387 100644 --- a/drivers/net/hydra.c +++ b/drivers/net/hydra.c @@ -94,7 +94,7 @@ static int __devinit hydra_init_one(struct zorro_dev *z, return 0; } -static const struct net_device_ops etherh_netdev_ops = { +static const struct net_device_ops hydra_netdev_ops = { .ndo_open = hydra_open, .ndo_stop = hydra_close,