diff options
author | Wilken Gottwalt <wilken.gottwalt@mailbox.org> | 2020-09-28 11:01:04 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-10-14 10:31:25 +0200 |
commit | a0dab3f9a984e5d6ef20f542739e0fa6fe968e2e (patch) | |
tree | 345ea7a1d17e1b70c936513607a057513ef0d725 | |
parent | 58e1d8506309b1030c17613fbdc12af39dc022ec (diff) | |
download | linux-stable-a0dab3f9a984e5d6ef20f542739e0fa6fe968e2e.tar.gz linux-stable-a0dab3f9a984e5d6ef20f542739e0fa6fe968e2e.tar.bz2 linux-stable-a0dab3f9a984e5d6ef20f542739e0fa6fe968e2e.zip |
net: usb: ax88179_178a: fix missing stop entry in driver_info
[ Upstream commit 9666ea66a74adfe295cb3a8760c76e1ef70f9caf ]
Adds the missing .stop entry in the Belkin driver_info structure.
Fixes: e20bd60bf62a ("net: usb: asix88179_178a: Add support for the Belkin B2B128")
Signed-off-by: Wilken Gottwalt <wilken.gottwalt@mailbox.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/net/usb/ax88179_178a.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/usb/ax88179_178a.c b/drivers/net/usb/ax88179_178a.c index 8455f72007b9..a9d0df435e26 100644 --- a/drivers/net/usb/ax88179_178a.c +++ b/drivers/net/usb/ax88179_178a.c @@ -1735,6 +1735,7 @@ static const struct driver_info belkin_info = { .status = ax88179_status, .link_reset = ax88179_link_reset, .reset = ax88179_reset, + .stop = ax88179_stop, .flags = FLAG_ETHER | FLAG_FRAMING_AX, .rx_fixup = ax88179_rx_fixup, .tx_fixup = ax88179_tx_fixup, |