Remove unused variable count.

This variable is initialized but not used.
This commit is contained in:
Kevin Lo 2012-02-27 16:10:26 +00:00
parent ef7b427562
commit 5a1fac10af
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232219

View File

@ -2254,7 +2254,7 @@ static void
mlx_complete(struct mlx_softc *sc)
{
struct mlx_command *mc, *nc;
int s, count;
int s;
debug_called(2);
@ -2263,7 +2263,6 @@ mlx_complete(struct mlx_softc *sc)
return;
s = splbio();
count = 0;
/* scan the list of busy/done commands */
mc = TAILQ_FIRST(&sc->mlx_work);