diff options
author | jlemon <jlemon@FreeBSD.org> | 2000-11-25 08:00:10 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2000-11-25 08:00:10 +0000 |
commit | a96aa4cf11500995644c97faf43a0149d62abe5d (patch) | |
tree | ca5da42ac217bb82985a1f64f582551232f50250 /sys/dev/dc/if_dcreg.h | |
parent | a27d413d095530bcaa22d941f3500ed29a5ea34e (diff) | |
download | FreeBSD-src-a96aa4cf11500995644c97faf43a0149d62abe5d.zip FreeBSD-src-a96aa4cf11500995644c97faf43a0149d62abe5d.tar.gz |
Change the driver to allocate its own callout structure, and modify
the interface to use callout_* instead of timeout(). Also add an
IS_MPSAFE #define (currently off) which will mark the driver as mpsafe
to the upper layers.
Diffstat (limited to 'sys/dev/dc/if_dcreg.h')
-rw-r--r-- | sys/dev/dc/if_dcreg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dc/if_dcreg.h b/sys/dev/dc/if_dcreg.h index 64ca347..2327fa6 100644 --- a/sys/dev/dc/if_dcreg.h +++ b/sys/dev/dc/if_dcreg.h @@ -694,7 +694,7 @@ struct dc_softc { struct dc_mediainfo *dc_mi; struct dc_list_data *dc_ldata; struct dc_chain_data dc_cdata; - struct callout_handle dc_stat_ch; + struct callout dc_stat_ch; #ifdef SRM_MEDIA int dc_srm_media; #endif |