Skip to content

Commit

Permalink
Fixed parameter reordering in firmware log routine.
Browse files Browse the repository at this point in the history
Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
  • Loading branch information
James Ketrenos committed Nov 7, 2005
1 parent 9d5b880 commit 286568a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ipw2200.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ static void ipw_dump_error_log(struct ipw_priv *priv,
for (i = 0; i < error->log_len; i++)
IPW_ERROR("%i\t0x%08x\t%i\n",
error->log[i].time,
error->log[i].event, error->log[i].data);
error->log[i].data, error->log[i].event);
}
#endif

Expand Down

0 comments on commit 286568a

Please sign in to comment.