git: 3f5ce99dc625 - stable/13 - ng_ubt: Use DEFINE_CLASS_1 macro for kobj inheritance.

Vladimir Kondratyev wulf at FreeBSD.org
Fri Apr 30 20:16:10 UTC 2021


The branch stable/13 has been updated by wulf:

URL: https://cgit.FreeBSD.org/src/commit/?id=3f5ce99dc625a6a0290295929eeec1ea0c5c122c

commit 3f5ce99dc625a6a0290295929eeec1ea0c5c122c
Author:     Vladimir Kondratyev <wulf at FreeBSD.org>
AuthorDate: 2021-04-15 14:25:50 +0000
Commit:     Vladimir Kondratyev <wulf at FreeBSD.org>
CommitDate: 2021-04-30 20:14:38 +0000

    ng_ubt: Use DEFINE_CLASS_1 macro for kobj inheritance.
---
 sys/netgraph/bluetooth/drivers/ubt/ng_ubt_intel.c | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_intel.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_intel.c
index c56d2288e77b..377543b73387 100644
--- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_intel.c
+++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_intel.c
@@ -145,15 +145,8 @@ static device_method_t	ubt_intel_methods[] =
 	DEVMETHOD_END
 };
 
-static kobj_class_t ubt_baseclasses[] = { &ubt_driver, NULL };
-static driver_t		ubt_intel_driver =
-{
-	.name =	   "ubt",
-	.methods = ubt_intel_methods,
-	.size =	   sizeof(struct ubt_softc),
-	.baseclasses = ubt_baseclasses,
-};
-
+DEFINE_CLASS_1(ubt, ubt_intel_driver, ubt_intel_methods,
+    sizeof(struct ubt_softc), ubt_driver);
 DRIVER_MODULE(ng_ubt_intel, uhub, ubt_intel_driver, ubt_devclass, 0, 0);
 MODULE_VERSION(ng_ubt_intel, NG_BLUETOOTH_VERSION);
 MODULE_DEPEND(ng_ubt_intel, netgraph, NG_ABI_VERSION, NG_ABI_VERSION, NG_ABI_VERSION);


More information about the dev-commits-src-all mailing list