From 9eb5ad2319e6010ea5d14a6e89f54be63bdd9c55 Mon Sep 17 00:00:00 2001 From: Roman Kurakin Date: Thu, 24 Aug 2006 21:09:39 +0000 Subject: [PATCH] Fix typo in a comment: DEFINE_CLASSx => DEFINE_CLASS_x. MFC after: 1 week --- sys/sys/kobj.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/sys/kobj.h b/sys/sys/kobj.h index 86788e597e1..b744db8de25 100644 --- a/sys/sys/kobj.h +++ b/sys/sys/kobj.h @@ -120,7 +120,7 @@ struct kobj_class classvar = { \ /* * Define a class inheriting a single base class. Use like this: * - * DEFINE_CLASS1(foo, foo_class, foo_methods, sizeof(foo_softc), + * DEFINE_CLASS_1(foo, foo_class, foo_methods, sizeof(foo_softc), * bar); */ #define DEFINE_CLASS_1(name, classvar, methods, size, \ @@ -135,7 +135,7 @@ struct kobj_class classvar = { \ /* * Define a class inheriting two base classes. Use like this: * - * DEFINE_CLASS2(foo, foo_class, foo_methods, sizeof(foo_softc), + * DEFINE_CLASS_2(foo, foo_class, foo_methods, sizeof(foo_softc), * bar, baz); */ #define DEFINE_CLASS_2(name, methods, size, \ @@ -151,7 +151,7 @@ struct kobj_class name ## _class = { \ /* * Define a class inheriting three base classes. Use like this: * - * DEFINE_CLASS3(foo, foo_class, foo_methods, sizeof(foo_softc), + * DEFINE_CLASS_3(foo, foo_class, foo_methods, sizeof(foo_softc), * bar, baz, foobar); */ #define DEFINE_CLASS_3(name, methods, size, \