From 961b97d43458f3c57241940cabebb3bedf7e4c00 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 26 May 2000 02:09:24 +0000 Subject: Back out the previous change to the queue(3) interface. It was not discussed and should probably not happen. Requested by: msmith and others --- usr.sbin/mlxcontrol/mlxcontrol.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'usr.sbin/mlxcontrol') diff --git a/usr.sbin/mlxcontrol/mlxcontrol.h b/usr.sbin/mlxcontrol/mlxcontrol.h index e8f322f..f0225b5 100644 --- a/usr.sbin/mlxcontrol/mlxcontrol.h +++ b/usr.sbin/mlxcontrol/mlxcontrol.h @@ -58,7 +58,7 @@ extern void mlx_print_phys_drv(struct mlx_phys_drv *drv, int channel, int target struct conf_phys_drv { - TAILQ_ENTRY(struct conf_phys_drv) pd_link; + TAILQ_ENTRY(conf_phys_drv) pd_link; int pd_bus; int pd_target; struct mlx_phys_drv pd_drv; @@ -66,23 +66,23 @@ struct conf_phys_drv struct conf_span { - TAILQ_ENTRY(struct conf_span) s_link; + TAILQ_ENTRY(conf_span) s_link; struct conf_phys_drv *s_drvs[8]; struct mlx_sys_drv_span s_span; }; struct conf_sys_drv { - TAILQ_ENTRY(struct conf_sys_drv) sd_link; + TAILQ_ENTRY(conf_sys_drv) sd_link; struct conf_span *sd_spans[4]; struct mlx_sys_drv sd_drv; }; struct conf_config { - TAILQ_HEAD(, struct conf_phys_drv) cc_phys_drvs; - TAILQ_HEAD(, struct conf_span) cc_spans; - TAILQ_HEAD(, struct conf_sys_drv) cc_sys_drvs; + TAILQ_HEAD(,conf_phys_drv) cc_phys_drvs; + TAILQ_HEAD(,conf_span) cc_spans; + TAILQ_HEAD(,conf_sys_drv) cc_sys_drvs; struct conf_sys_drv *cc_drives[32]; struct mlx_core_cfg cc_cfg; }; -- cgit v1.1