diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2020-09-12 19:33:25 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2020-09-12 19:33:25 +0000 |
commit | 752c173687a3f220c24e8e251a98b448dbeed3ff (patch) | |
tree | 355b76d1a6f3b353a476194481bb93fbcff4c37c /sys/dev/wi/if_wi_pci.c | |
parent | c55ffe543826f574f6560b05642ee4c06178853c (diff) | |
download | src-test2-752c173687a3f220c24e8e251a98b448dbeed3ff.tar.gz src-test2-752c173687a3f220c24e8e251a98b448dbeed3ff.zip |
Notes
Diffstat (limited to 'sys/dev/wi/if_wi_pci.c')
-rw-r--r-- | sys/dev/wi/if_wi_pci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/wi/if_wi_pci.c b/sys/dev/wi/if_wi_pci.c index c0431617d4be..e537239408a5 100644 --- a/sys/dev/wi/if_wi_pci.c +++ b/sys/dev/wi/if_wi_pci.c @@ -84,7 +84,6 @@ static device_method_t wi_pci_methods[] = { DEVMETHOD(device_shutdown, wi_shutdown), DEVMETHOD(device_suspend, wi_pci_suspend), DEVMETHOD(device_resume, wi_pci_resume), - { 0, 0 } }; @@ -246,7 +245,7 @@ wi_pci_suspend(device_t dev) WI_LOCK(sc); wi_stop(sc, 1); WI_UNLOCK(sc); - + return (0); } |