diff options
author | rakuco <rakuco@FreeBSD.org> | 2012-12-26 19:14:21 +0000 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2012-12-26 19:14:21 +0000 |
commit | 5f0225e4d62ffc0901d31cd644c696af2cd14b67 (patch) | |
tree | fa0b35fb564d48d91b6a45eeb10175cf1e2989a6 /sys | |
parent | bb2a206235f941004da213f5a9d762ddba97009e (diff) | |
download | FreeBSD-src-5f0225e4d62ffc0901d31cd644c696af2cd14b67.zip FreeBSD-src-5f0225e4d62ffc0901d31cd644c696af2cd14b67.tar.gz |
Use DEVMETHOD_END, as suggested by hselasky@.
Approved by: glebius
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c index cb7d94c..d43d51b 100644 --- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c +++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c @@ -1766,7 +1766,7 @@ static device_method_t ubt_methods[] = DEVMETHOD(device_probe, ubt_probe), DEVMETHOD(device_attach, ubt_attach), DEVMETHOD(device_detach, ubt_detach), - { 0, 0 } + DEVMETHOD_END }; static driver_t ubt_driver = |