diff options
| author | uwe <uwe@NetBSD.org> | 2020-08-11 12:10:10 +0000 |
|---|---|---|
| committer | uwe <uwe@NetBSD.org> | 2020-08-11 12:10:10 +0000 |
| commit | 524d836792b629e8e4a5afa3e4e299187b645215 (patch) | |
| tree | f2dca9a56119eecd3238459b3f7c3aa5c49facf1 /sys/dev | |
| parent | bb94bef57aae9f62c42f7042b84630d55daff60f (diff) | |
DEV_VERBOSE_DEFINE - use MODULE_CLASS_DRIVER to match the definition.
Catch up with previous to unbreak autoloading of verbose modules.
PR kern/55535
CVS: ----------------------------------------------------------------------
CVS: CVSROOT cvs.NetBSD.org:/cvsroot
CVS: please use "PR category/123" to have the commitmsg appended to PR 123
CVS:
CVS: Please evaluate your changes and consider the following.
CVS: Abort checkin if you answer no.
CVS: => For all changes:
CVS: Do the changed files compile?
CVS: Has the change been tested?
CVS: => If you are not completely familiar with the changed components:
CVS: Has the change been posted for review?
CVS: Have you allowed enough time for feedback?
CVS: => If the change is major:
CVS: => If the change adds files to, or removes files from $DESTDIR:
CVS: => If you are changing a library or kernel interface:
CVS: Have you successfully run "./build.sh release"?
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/dev_verbose.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/dev_verbose.h b/sys/dev/dev_verbose.h index b530c221715..ae26816180c 100644 --- a/sys/dev/dev_verbose.h +++ b/sys/dev/dev_verbose.h @@ -1,4 +1,4 @@ -/* $NetBSD: dev_verbose.h,v 1.3 2020/08/03 18:19:35 uwe Exp $ */ +/* $NetBSD: dev_verbose.h,v 1.4 2020/08/11 12:10:10 uwe Exp $ */ /* * Redistribution and use in source and binary forms, with or without @@ -96,7 +96,7 @@ tag ## _load_verbose(void) \ { \ \ if (tag ## verbose_loaded == 0) \ - module_autoload(# tag "verbose", MODULE_CLASS_MISC); \ + module_autoload(# tag "verbose", MODULE_CLASS_DRIVER); \ } \ \ static const char * \ |
