diff options
author | marius <marius@FreeBSD.org> | 2011-11-22 21:55:40 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2011-11-22 21:55:40 +0000 |
commit | 1b8636b892354196b19384bfe65b6f16ca825c20 (patch) | |
tree | a76b6a370d61cdfa3d0335a05c8e3bb1cf84e719 /sys/dev/bwn/if_bwn.c | |
parent | 9eef52e077729e443302cd2d402467b679c1fd22 (diff) | |
download | FreeBSD-src-1b8636b892354196b19384bfe65b6f16ca825c20.zip FreeBSD-src-1b8636b892354196b19384bfe65b6f16ca825c20.tar.gz |
s,KOBJMETHOD_END,DEVMETHOD_END,g in order to fully hide the explicit mention
of kobj(9) from device drivers.
Diffstat (limited to 'sys/dev/bwn/if_bwn.c')
-rw-r--r-- | sys/dev/bwn/if_bwn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/bwn/if_bwn.c b/sys/dev/bwn/if_bwn.c index af10ace..f26945f 100644 --- a/sys/dev/bwn/if_bwn.c +++ b/sys/dev/bwn/if_bwn.c @@ -14226,7 +14226,7 @@ static device_method_t bwn_methods[] = { DEVMETHOD(device_detach, bwn_detach), DEVMETHOD(device_suspend, bwn_suspend), DEVMETHOD(device_resume, bwn_resume), - KOBJMETHOD_END + DEVMETHOD_END }; static driver_t bwn_driver = { "bwn", |