svn commit: r244715 - head/sys/netgraph/bluetooth/drivers/ubt
Raphael Kubo da Costa
rakuco at FreeBSD.org
Wed Dec 26 19:14:21 UTC 2012
Author: rakuco (ports committer)
Date: Wed Dec 26 19:14:21 2012
New Revision: 244715
URL: http://svnweb.freebsd.org/changeset/base/244715
Log:
Use DEVMETHOD_END, as suggested by hselasky at .
Approved by: glebius
Modified:
head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
Modified: head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
==============================================================================
--- head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c Wed Dec 26 19:12:31 2012 (r244714)
+++ head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c Wed Dec 26 19:14:21 2012 (r244715)
@@ -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 =
More information about the svn-src-head
mailing list