aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mlx/mlxvar.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/mlx/mlxvar.h')
-rw-r--r--sys/dev/mlx/mlxvar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/mlx/mlxvar.h b/sys/dev/mlx/mlxvar.h
index edb1a853d094..58223cbe65f3 100644
--- a/sys/dev/mlx/mlxvar.h
+++ b/sys/dev/mlx/mlxvar.h
@@ -77,7 +77,7 @@ struct mlx_sysdrive
*/
struct mlx_command
{
- TAILQ_ENTRY(mlx_command) mc_link; /* list linkage */
+ TAILQ_ENTRY(struct mlx_command) mc_link; /* list linkage */
struct mlx_softc *mc_sc; /* controller that owns us */
u_int8_t mc_slot; /* command slot we occupy */
@@ -128,8 +128,8 @@ struct mlx_softc
#define MLX_FEAT_PAUSEWORKS (1<<0) /* channel pause works as expected */
/* controller queues and arrays */
- TAILQ_HEAD(, mlx_command) mlx_freecmds; /* command structures available for reuse */
- TAILQ_HEAD(, mlx_command) mlx_work; /* active commands */
+ TAILQ_HEAD(, struct mlx_command) mlx_freecmds; /* command structures available for reuse */
+ TAILQ_HEAD(, struct mlx_command) mlx_work; /* active commands */
struct mlx_command *mlx_busycmd[MLX_NSLOTS]; /* busy commands */
int mlx_busycmds; /* count of busy commands */
struct mlx_sysdrive mlx_sysdrive[MLX_MAXDRIVES]; /* system drives */