Skip to content

Commit

Permalink
staging: wlags49_h2: fix format of timeStamp debug output
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Andy Shevchenko authored and Greg Kroah-Hartman committed Oct 19, 2010
1 parent 1bc80e9 commit a113af9
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions drivers/staging/wlags49_h2/wl_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3139,8 +3139,17 @@ void wl_process_mailbox( struct wl_private *lp )
//DBG_TRACE( DbgInfo, "(%s) lenType : 0x%04x.\n",
// lp->dev->name, probe_rsp->lenType );

DBG_TRACE( DbgInfo, "(%s) timeStamp : %s\n",
lp->dev->name, DbgHwAddr( probe_rsp->timeStamp ));
DBG_TRACE(DbgInfo, "(%s) timeStamp : "
"%d.%d.%d.%d.%d.%d.%d.%d\n",
lp->dev->name,
probe_rsp->timeStamp[0],
probe_rsp->timeStamp[1],
probe_rsp->timeStamp[2],
probe_rsp->timeStamp[3],
probe_rsp->timeStamp[4],
probe_rsp->timeStamp[5],
probe_rsp->timeStamp[6],
probe_rsp->timeStamp[7]);

DBG_TRACE( DbgInfo, "(%s) beaconInt : 0x%04x.\n",
lp->dev->name, probe_rsp->beaconInterval );
Expand Down

0 comments on commit a113af9

Please sign in to comment.