This patch fix the coding style problem of block comment detected by the
checkpach.pl.

WARNING: Block comments use a trailing */ on a separate line
WARNING: Block comments use * on subsequent lines

Signed-off-by: Hisao Tanabe <xtan...@gmail.com>
---
 drivers/staging/wlan-ng/hfa384x_usb.c | 2209 +++++++++++++++++----------------
 1 file changed, 1105 insertions(+), 1104 deletions(-)

diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c 
b/drivers/staging/wlan-ng/hfa384x_usb.c
index a23b6e7..5b6a529 100644
--- a/drivers/staging/wlan-ng/hfa384x_usb.c
+++ b/drivers/staging/wlan-ng/hfa384x_usb.c
@@ -307,22 +307,22 @@ void dbprint_urb(struct urb *urb)
 }
 #endif
 
-/*----------------------------------------------------------------
-* submit_rx_urb
-*
-* Listen for input data on the BULK-IN pipe. If the pipe has
-* stalled then schedule it to be reset.
-*
-* Arguments:
-*      hw              device struct
-*      memflags        memory allocation flags
-*
-* Returns:
-*      error code from submission
-*
-* Call context:
-*      Any
-----------------------------------------------------------------*/
+/*
+ * submit_rx_urb
+ *
+ * Listen for input data on the BULK-IN pipe. If the pipe has
+ * stalled then schedule it to be reset.
+ *
+ * Arguments:
+ *     hw              device struct
+ *     memflags        memory allocation flags
+ *
+ * Returns:
+ *     error code from submission
+ *
+ * Call context:
+ *     Any
+ */
 static int submit_rx_urb(hfa384x_t *hw, gfp_t memflags)
 {
        struct sk_buff *skb;
@@ -367,24 +367,24 @@ static int submit_rx_urb(hfa384x_t *hw, gfp_t memflags)
        return result;
 }
 
-/*----------------------------------------------------------------
-* submit_tx_urb
-*
-* Prepares and submits the URB of transmitted data. If the
-* submission fails then it will schedule the output pipe to
-* be reset.
-*
-* Arguments:
-*      hw              device struct
-*      tx_urb          URB of data for transmission
-*      memflags        memory allocation flags
-*
-* Returns:
-*      error code from submission
-*
-* Call context:
-*      Any
-----------------------------------------------------------------*/
+/*
+ * submit_tx_urb
+ *
+ * Prepares and submits the URB of transmitted data. If the
+ * submission fails then it will schedule the output pipe to
+ * be reset.
+ *
+ * Arguments:
+ *     hw              device struct
+ *     tx_urb          URB of data for transmission
+ *     memflags        memory allocation flags
+ *
+ * Returns:
+ *     error code from submission
+ *
+ * Call context:
+ *     Any
+ */
 static int submit_tx_urb(hfa384x_t *hw, struct urb *tx_urb, gfp_t memflags)
 {
        struct net_device *netdev = hw->wlandev->netdev;
@@ -412,22 +412,22 @@ static int submit_tx_urb(hfa384x_t *hw, struct urb 
*tx_urb, gfp_t memflags)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa394x_usb_defer
-*
-* There are some things that the USB stack cannot do while
-* in interrupt context, so we arrange this function to run
-* in process context.
-*
-* Arguments:
-*      hw      device structure
-*
-* Returns:
-*      nothing
-*
-* Call context:
-*      process (by design)
-----------------------------------------------------------------*/
+/*
+ * hfa394x_usb_defer
+ *
+ * There are some things that the USB stack cannot do while
+ * in interrupt context, so we arrange this function to run
+ * in process context.
+ *
+ * Arguments:
+ *     hw      device structure
+ *
+ * Returns:
+ *     nothing
+ *
+ * Call context:
+ *     process (by design)
+ */
 static void hfa384x_usb_defer(struct work_struct *data)
 {
        hfa384x_t *hw = container_of(data, struct hfa384x, usb_work);
@@ -501,27 +501,27 @@ static void hfa384x_usb_defer(struct work_struct *data)
                netif_wake_queue(hw->wlandev->netdev);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_create
-*
-* Sets up the hfa384x_t data structure for use.  Note this
-* does _not_ initialize the actual hardware, just the data structures
-* we use to keep track of its state.
-*
-* Arguments:
-*      hw              device structure
-*      irq             device irq number
-*      iobase          i/o base address for register access
-*      membase         memory base address for register access
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_create
+ *
+ * Sets up the hfa384x_t data structure for use.  Note this
+ * does _not_ initialize the actual hardware, just the data structures
+ * we use to keep track of its state.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     irq             device irq number
+ *     iobase          i/o base address for register access
+ *     membase         memory base address for register access
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 void hfa384x_create(hfa384x_t *hw, struct usb_device *usb)
 {
        memset(hw, 0, sizeof(hfa384x_t));
@@ -571,28 +571,28 @@ void hfa384x_create(hfa384x_t *hw, struct usb_device *usb)
                    (unsigned long)hw);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_destroy
-*
-* Partner to hfa384x_create().  This function cleans up the hw
-* structure so that it can be freed by the caller using a simple
-* kfree.  Currently, this function is just a placeholder.  If, at some
-* point in the future, an hw in the 'shutdown' state requires a 'deep'
-* kfree, this is where it should be done.  Note that if this function
-* is called on a _running_ hw structure, the drvr_stop() function is
-* called.
-*
-* Arguments:
-*      hw              device structure
-*
-* Returns:
-*      nothing, this function is not allowed to fail.
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_destroy
+ *
+ * Partner to hfa384x_create().  This function cleans up the hw
+ * structure so that it can be freed by the caller using a simple
+ * kfree.  Currently, this function is just a placeholder.  If, at some
+ * point in the future, an hw in the 'shutdown' state requires a 'deep'
+ * kfree, this is where it should be done.  Note that if this function
+ * is called on a _running_ hw structure, the drvr_stop() function is
+ * called.
+ *
+ * Arguments:
+ *     hw              device structure
+ *
+ * Returns:
+ *     nothing, this function is not allowed to fail.
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 void hfa384x_destroy(hfa384x_t *hw)
 {
        struct sk_buff *skb;
@@ -645,11 +645,11 @@ usbctlx_get_rridresult(const hfa384x_usb_rridresp_t 
*rridresp,
        result->riddata_len = ((le16_to_cpu(rridresp->frmlen) - 1) * 2);
 }
 
-/*----------------------------------------------------------------
-* Completor object:
-* This completor must be passed to hfa384x_usbctlx_complete_sync()
-* when processing a CTLX that returns a hfa384x_cmdresult_t structure.
-----------------------------------------------------------------*/
+/*
+ * Completor object:
+ * This completor must be passed to hfa384x_usbctlx_complete_sync()
+ * when processing a CTLX that returns a hfa384x_cmdresult_t structure.
+ */
 struct usbctlx_cmd_completor {
        struct usbctlx_completor head;
 
@@ -678,11 +678,11 @@ static inline struct usbctlx_completor 
*init_cmd_completor(
        return &(completor->head);
 }
 
-/*----------------------------------------------------------------
-* Completor object:
-* This completor must be passed to hfa384x_usbctlx_complete_sync()
-* when processing a CTLX that reads a RID.
-----------------------------------------------------------------*/
+/*
+ * Completor object:
+ * This completor must be passed to hfa384x_usbctlx_complete_sync()
+ * when processing a CTLX that reads a RID.
+ */
 struct usbctlx_rrid_completor {
        struct usbctlx_completor head;
 
@@ -726,22 +726,22 @@ static inline struct usbctlx_completor 
*init_rrid_completor(
        return &(completor->head);
 }
 
-/*----------------------------------------------------------------
-* Completor object:
-* Interprets the results of a synchronous RID-write
-----------------------------------------------------------------*/
+/*
+ * Completor object:
+ * Interprets the results of a synchronous RID-write
+ */
 #define init_wrid_completor  init_cmd_completor
 
-/*----------------------------------------------------------------
-* Completor object:
-* Interprets the results of a synchronous memory-write
-----------------------------------------------------------------*/
+/*
+ * Completor object:
+ * Interprets the results of a synchronous memory-write
+ */
 #define init_wmem_completor  init_cmd_completor
 
-/*----------------------------------------------------------------
-* Completor object:
-* Interprets the results of a synchronous memory-read
-----------------------------------------------------------------*/
+/*
+ * Completor object:
+ * Interprets the results of a synchronous memory-read
+ */
 struct usbctlx_rmem_completor {
        struct usbctlx_completor head;
 
@@ -775,27 +775,27 @@ static inline struct usbctlx_completor 
*init_rmem_completor(
        return &(completor->head);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_cb_status
-*
-* Ctlx_complete handler for async CMD type control exchanges.
-* mark the hw struct as such.
-*
-* Note: If the handling is changed here, it should probably be
-*       changed in docmd as well.
-*
-* Arguments:
-*      hw              hw struct
-*      ctlx            completed CTLX
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_cb_status
+ *
+ * Ctlx_complete handler for async CMD type control exchanges.
+ * mark the hw struct as such.
+ *
+ * Note: If the handling is changed here, it should probably be
+ *       changed in docmd as well.
+ *
+ * Arguments:
+ *     hw              hw struct
+ *     ctlx            completed CTLX
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_cb_status(hfa384x_t *hw, const hfa384x_usbctlx_t *ctlx)
 {
        if (ctlx->usercb) {
@@ -905,25 +905,25 @@ hfa384x_dowmem_async(hfa384x_t *hw,
                              cmdcb, usercb, usercb_data);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_cmd_initialize
-*
-* Issues the initialize command and sets the hw->state based
-* on the result.
-*
-* Arguments:
-*      hw              device structure
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_cmd_initialize
+ *
+ * Issues the initialize command and sets the hw->state based
+ * on the result.
+ *
+ * Arguments:
+ *     hw              device structure
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_cmd_initialize(hfa384x_t *hw)
 {
        int result = 0;
@@ -950,26 +950,26 @@ int hfa384x_cmd_initialize(hfa384x_t *hw)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_cmd_disable
-*
-* Issues the disable command to stop communications on one of
-* the MACs 'ports'.
-*
-* Arguments:
-*      hw              device structure
-*      macport         MAC port number (host order)
-*
-* Returns:
-*      0               success
-*      >0              f/w reported failure - f/w status code
-*      <0              driver reported error (timeout|bad arg)
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_cmd_disable
+ *
+ * Issues the disable command to stop communications on one of
+ * the MACs 'ports'.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     macport         MAC port number (host order)
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported failure - f/w status code
+ *     <0              driver reported error (timeout|bad arg)
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_cmd_disable(hfa384x_t *hw, u16 macport)
 {
        hfa384x_metacmd_t cmd;
@@ -983,26 +983,26 @@ int hfa384x_cmd_disable(hfa384x_t *hw, u16 macport)
        return hfa384x_docmd_wait(hw, &cmd);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_cmd_enable
-*
-* Issues the enable command to enable communications on one of
-* the MACs 'ports'.
-*
-* Arguments:
-*      hw              device structure
-*      macport         MAC port number
-*
-* Returns:
-*      0               success
-*      >0              f/w reported failure - f/w status code
-*      <0              driver reported error (timeout|bad arg)
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_cmd_enable
+ *
+ * Issues the enable command to enable communications on one of
+ * the MACs 'ports'.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     macport         MAC port number
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported failure - f/w status code
+ *     <0              driver reported error (timeout|bad arg)
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_cmd_enable(hfa384x_t *hw, u16 macport)
 {
        hfa384x_metacmd_t cmd;
@@ -1016,35 +1016,35 @@ int hfa384x_cmd_enable(hfa384x_t *hw, u16 macport)
        return hfa384x_docmd_wait(hw, &cmd);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_cmd_monitor
-*
-* Enables the 'monitor mode' of the MAC.  Here's the description of
-* monitor mode that I've received thus far:
-*
-*  "The "monitor mode" of operation is that the MAC passes all
-*  frames for which the PLCP checks are correct. All received
-*  MPDUs are passed to the host with MAC Port = 7, with a
-*  receive status of good, FCS error, or undecryptable. Passing
-*  certain MPDUs is a violation of the 802.11 standard, but useful
-*  for a debugging tool."  Normal communication is not possible
-*  while monitor mode is enabled.
-*
-* Arguments:
-*      hw              device structure
-*      enable          a code (0x0b|0x0f) that enables/disables
-*                      monitor mode. (host order)
-*
-* Returns:
-*      0               success
-*      >0              f/w reported failure - f/w status code
-*      <0              driver reported error (timeout|bad arg)
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_cmd_monitor
+ *
+ * Enables the 'monitor mode' of the MAC.  Here's the description of
+ * monitor mode that I've received thus far:
+ *
+ *  "The "monitor mode" of operation is that the MAC passes all
+ *  frames for which the PLCP checks are correct. All received
+ *  MPDUs are passed to the host with MAC Port = 7, with a
+ *  receive status of good, FCS error, or undecryptable. Passing
+ *  certain MPDUs is a violation of the 802.11 standard, but useful
+ *  for a debugging tool."  Normal communication is not possible
+ *  while monitor mode is enabled.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     enable          a code (0x0b|0x0f) that enables/disables
+ *                     monitor mode. (host order)
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported failure - f/w status code
+ *     <0              driver reported error (timeout|bad arg)
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_cmd_monitor(hfa384x_t *hw, u16 enable)
 {
        hfa384x_metacmd_t cmd;
@@ -1058,44 +1058,44 @@ int hfa384x_cmd_monitor(hfa384x_t *hw, u16 enable)
        return hfa384x_docmd_wait(hw, &cmd);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_cmd_download
-*
-* Sets the controls for the MAC controller code/data download
-* process.  The arguments set the mode and address associated
-* with a download.  Note that the aux registers should be enabled
-* prior to setting one of the download enable modes.
-*
-* Arguments:
-*      hw              device structure
-*      mode            0 - Disable programming and begin code exec
-*                      1 - Enable volatile mem programming
-*                      2 - Enable non-volatile mem programming
-*                      3 - Program non-volatile section from NV download
-*                          buffer.
-*                      (host order)
-*      lowaddr
-*      highaddr        For mode 1, sets the high & low order bits of
-*                      the "destination address".  This address will be
-*                      the execution start address when download is
-*                      subsequently disabled.
-*                      For mode 2, sets the high & low order bits of
-*                      the destination in NV ram.
-*                      For modes 0 & 3, should be zero. (host order)
-*                      NOTE: these are CMD format.
-*      codelen         Length of the data to write in mode 2,
-*                      zero otherwise. (host order)
-*
-* Returns:
-*      0               success
-*      >0              f/w reported failure - f/w status code
-*      <0              driver reported error (timeout|bad arg)
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_cmd_download
+ *
+ * Sets the controls for the MAC controller code/data download
+ * process.  The arguments set the mode and address associated
+ * with a download.  Note that the aux registers should be enabled
+ * prior to setting one of the download enable modes.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     mode            0 - Disable programming and begin code exec
+ *                     1 - Enable volatile mem programming
+ *                     2 - Enable non-volatile mem programming
+ *                     3 - Program non-volatile section from NV download
+ *                         buffer.
+ *                     (host order)
+ *     lowaddr
+ *     highaddr        For mode 1, sets the high & low order bits of
+ *                     the "destination address".  This address will be
+ *                     the execution start address when download is
+ *                     subsequently disabled.
+ *                     For mode 2, sets the high & low order bits of
+ *                     the destination in NV ram.
+ *                     For modes 0 & 3, should be zero. (host order)
+ *                     NOTE: these are CMD format.
+ *     codelen         Length of the data to write in mode 2,
+ *                     zero otherwise. (host order)
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported failure - f/w status code
+ *     <0              driver reported error (timeout|bad arg)
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_cmd_download(hfa384x_t *hw, u16 mode, u16 lowaddr,
                         u16 highaddr, u16 codelen)
 {
@@ -1114,29 +1114,29 @@ int hfa384x_cmd_download(hfa384x_t *hw, u16 mode, u16 
lowaddr,
        return hfa384x_docmd_wait(hw, &cmd);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_corereset
-*
-* Perform a reset of the hfa38xx MAC core.  We assume that the hw
-* structure is in its "created" state.  That is, it is initialized
-* with proper values.  Note that if a reset is done after the
-* device has been active for awhile, the caller might have to clean
-* up some leftover cruft in the hw structure.
-*
-* Arguments:
-*      hw              device structure
-*      holdtime        how long (in ms) to hold the reset
-*      settletime      how long (in ms) to wait after releasing
-*                      the reset
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_corereset
+ *
+ * Perform a reset of the hfa38xx MAC core.  We assume that the hw
+ * structure is in its "created" state.  That is, it is initialized
+ * with proper values.  Note that if a reset is done after the
+ * device has been active for awhile, the caller might have to clean
+ * up some leftover cruft in the hw structure.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     holdtime        how long (in ms) to hold the reset
+ *     settletime      how long (in ms) to wait after releasing
+ *                     the reset
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_corereset(hfa384x_t *hw, int holdtime, int settletime, int genesis)
 {
        int result;
@@ -1150,30 +1150,30 @@ int hfa384x_corereset(hfa384x_t *hw, int holdtime, int 
settletime, int genesis)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbctlx_complete_sync
-*
-* Waits for a synchronous CTLX object to complete,
-* and then handles the response.
-*
-* Arguments:
-*      hw              device structure
-*      ctlx            CTLX ptr
-*      completor       functor object to decide what to
-*                      do with the CTLX's result.
-*
-* Returns:
-*      0               Success
-*      -ERESTARTSYS    Interrupted by a signal
-*      -EIO            CTLX failed
-*      -ENODEV         Adapter was unplugged
-*      ???             Result from completor
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbctlx_complete_sync
+ *
+ * Waits for a synchronous CTLX object to complete,
+ * and then handles the response.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     ctlx            CTLX ptr
+ *     completor       functor object to decide what to
+ *                     do with the CTLX's result.
+ *
+ * Returns:
+ *     0               Success
+ *     -ERESTARTSYS    Interrupted by a signal
+ *     -EIO            CTLX failed
+ *     -ENODEV         Adapter was unplugged
+ *     ???             Result from completor
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 static int hfa384x_usbctlx_complete_sync(hfa384x_t *hw,
                                         hfa384x_usbctlx_t *ctlx,
                                         struct usbctlx_completor *completor)
@@ -1257,38 +1257,38 @@ static int hfa384x_usbctlx_complete_sync(hfa384x_t *hw,
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_docmd
-*
-* Constructs a command CTLX and submits it.
-*
-* NOTE: Any changes to the 'post-submit' code in this function
-*       need to be carried over to hfa384x_cbcmd() since the handling
-*       is virtually identical.
-*
-* Arguments:
-*      hw              device structure
-*      mode            DOWAIT or DOASYNC
-*       cmd             cmd structure.  Includes all arguments and result
-*                       data points.  All in host order. in host order
-*      cmdcb           command-specific callback
-*      usercb          user callback for async calls, NULL for DOWAIT calls
-*      usercb_data     user supplied data pointer for async calls, NULL
-*                      for DOASYNC calls
-*
-* Returns:
-*      0               success
-*      -EIO            CTLX failure
-*      -ERESTARTSYS    Awakened on signal
-*      >0              command indicated error, Status and Resp0-2 are
-*                      in hw structure.
-*
-* Side effects:
-*
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_docmd
+ *
+ * Constructs a command CTLX and submits it.
+ *
+ * NOTE: Any changes to the 'post-submit' code in this function
+ *       need to be carried over to hfa384x_cbcmd() since the handling
+ *       is virtually identical.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     mode            DOWAIT or DOASYNC
+ *       cmd             cmd structure.  Includes all arguments and result
+ *                       data points.  All in host order. in host order
+ *     cmdcb           command-specific callback
+ *     usercb          user callback for async calls, NULL for DOWAIT calls
+ *     usercb_data     user supplied data pointer for async calls, NULL
+ *                     for DOASYNC calls
+ *
+ * Returns:
+ *     0               success
+ *     -EIO            CTLX failure
+ *     -ERESTARTSYS    Awakened on signal
+ *     >0              command indicated error, Status and Resp0-2 are
+ *                     in hw structure.
+ *
+ * Side effects:
+ *
+ *
+ * Call context:
+ *     process
+ */
 static int
 hfa384x_docmd(hfa384x_t *hw,
              enum cmd_mode mode,
@@ -1341,42 +1341,42 @@ hfa384x_docmd(hfa384x_t *hw,
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_dorrid
-*
-* Constructs a read rid CTLX and issues it.
-*
-* NOTE: Any changes to the 'post-submit' code in this function
-*       need to be carried over to hfa384x_cbrrid() since the handling
-*       is virtually identical.
-*
-* Arguments:
-*      hw              device structure
-*      mode            DOWAIT or DOASYNC
-*      rid             Read RID number (host order)
-*      riddata         Caller supplied buffer that MAC formatted RID.data
-*                      record will be written to for DOWAIT calls. Should
-*                      be NULL for DOASYNC calls.
-*      riddatalen      Buffer length for DOWAIT calls. Zero for DOASYNC calls.
-*      cmdcb           command callback for async calls, NULL for DOWAIT calls
-*      usercb          user callback for async calls, NULL for DOWAIT calls
-*      usercb_data     user supplied data pointer for async calls, NULL
-*                      for DOWAIT calls
-*
-* Returns:
-*      0               success
-*      -EIO            CTLX failure
-*      -ERESTARTSYS    Awakened on signal
-*      -ENODATA        riddatalen != macdatalen
-*      >0              command indicated error, Status and Resp0-2 are
-*                      in hw structure.
-*
-* Side effects:
-*
-* Call context:
-*      interrupt (DOASYNC)
-*      process (DOWAIT or DOASYNC)
-----------------------------------------------------------------*/
+/*
+ * hfa384x_dorrid
+ *
+ * Constructs a read rid CTLX and issues it.
+ *
+ * NOTE: Any changes to the 'post-submit' code in this function
+ *       need to be carried over to hfa384x_cbrrid() since the handling
+ *       is virtually identical.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     mode            DOWAIT or DOASYNC
+ *     rid             Read RID number (host order)
+ *     riddata         Caller supplied buffer that MAC formatted RID.data
+ *                     record will be written to for DOWAIT calls. Should
+ *                     be NULL for DOASYNC calls.
+ *     riddatalen      Buffer length for DOWAIT calls. Zero for DOASYNC calls.
+ *     cmdcb           command callback for async calls, NULL for DOWAIT calls
+ *     usercb          user callback for async calls, NULL for DOWAIT calls
+ *     usercb_data     user supplied data pointer for async calls, NULL
+ *                     for DOWAIT calls
+ *
+ * Returns:
+ *     0               success
+ *     -EIO            CTLX failure
+ *     -ERESTARTSYS    Awakened on signal
+ *     -ENODATA        riddatalen != macdatalen
+ *     >0              command indicated error, Status and Resp0-2 are
+ *                     in hw structure.
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt (DOASYNC)
+ *     process (DOWAIT or DOASYNC)
+ */
 static int
 hfa384x_dorrid(hfa384x_t *hw,
               enum cmd_mode mode,
@@ -1426,38 +1426,38 @@ hfa384x_dorrid(hfa384x_t *hw,
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_dowrid
-*
-* Constructs a write rid CTLX and issues it.
-*
-* NOTE: Any changes to the 'post-submit' code in this function
-*       need to be carried over to hfa384x_cbwrid() since the handling
-*       is virtually identical.
-*
-* Arguments:
-*      hw              device structure
-*      enum cmd_mode   DOWAIT or DOASYNC
-*      rid             RID code
-*      riddata         Data portion of RID formatted for MAC
-*      riddatalen      Length of the data portion in bytes
-*       cmdcb           command callback for async calls, NULL for DOWAIT calls
-*      usercb          user callback for async calls, NULL for DOWAIT calls
-*      usercb_data     user supplied data pointer for async calls
-*
-* Returns:
-*      0               success
-*      -ETIMEDOUT      timed out waiting for register ready or
-*                      command completion
-*      >0              command indicated error, Status and Resp0-2 are
-*                      in hw structure.
-*
-* Side effects:
-*
-* Call context:
-*      interrupt (DOASYNC)
-*      process (DOWAIT or DOASYNC)
-----------------------------------------------------------------*/
+/*
+ * hfa384x_dowrid
+ *
+ * Constructs a write rid CTLX and issues it.
+ *
+ * NOTE: Any changes to the 'post-submit' code in this function
+ *       need to be carried over to hfa384x_cbwrid() since the handling
+ *       is virtually identical.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     enum cmd_mode   DOWAIT or DOASYNC
+ *     rid             RID code
+ *     riddata         Data portion of RID formatted for MAC
+ *     riddatalen      Length of the data portion in bytes
+ *       cmdcb           command callback for async calls, NULL for DOWAIT 
calls
+ *     usercb          user callback for async calls, NULL for DOWAIT calls
+ *     usercb_data     user supplied data pointer for async calls
+ *
+ * Returns:
+ *     0               success
+ *     -ETIMEDOUT      timed out waiting for register ready or
+ *                     command completion
+ *     >0              command indicated error, Status and Resp0-2 are
+ *                     in hw structure.
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt (DOASYNC)
+ *     process (DOWAIT or DOASYNC)
+ */
 static int
 hfa384x_dowrid(hfa384x_t *hw,
               enum cmd_mode mode,
@@ -1512,39 +1512,39 @@ hfa384x_dowrid(hfa384x_t *hw,
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_dormem
-*
-* Constructs a readmem CTLX and issues it.
-*
-* NOTE: Any changes to the 'post-submit' code in this function
-*       need to be carried over to hfa384x_cbrmem() since the handling
-*       is virtually identical.
-*
-* Arguments:
-*      hw              device structure
-*      mode            DOWAIT or DOASYNC
-*      page            MAC address space page (CMD format)
-*      offset          MAC address space offset
-*      data            Ptr to data buffer to receive read
-*      len             Length of the data to read (max == 2048)
-*      cmdcb           command callback for async calls, NULL for DOWAIT calls
-*      usercb          user callback for async calls, NULL for DOWAIT calls
-*      usercb_data     user supplied data pointer for async calls
-*
-* Returns:
-*      0               success
-*      -ETIMEDOUT      timed out waiting for register ready or
-*                      command completion
-*      >0              command indicated error, Status and Resp0-2 are
-*                      in hw structure.
-*
-* Side effects:
-*
-* Call context:
-*      interrupt (DOASYNC)
-*      process (DOWAIT or DOASYNC)
-----------------------------------------------------------------*/
+/*
+ * hfa384x_dormem
+ *
+ * Constructs a readmem CTLX and issues it.
+ *
+ * NOTE: Any changes to the 'post-submit' code in this function
+ *       need to be carried over to hfa384x_cbrmem() since the handling
+ *       is virtually identical.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     mode            DOWAIT or DOASYNC
+ *     page            MAC address space page (CMD format)
+ *     offset          MAC address space offset
+ *     data            Ptr to data buffer to receive read
+ *     len             Length of the data to read (max == 2048)
+ *     cmdcb           command callback for async calls, NULL for DOWAIT calls
+ *     usercb          user callback for async calls, NULL for DOWAIT calls
+ *     usercb_data     user supplied data pointer for async calls
+ *
+ * Returns:
+ *     0               success
+ *     -ETIMEDOUT      timed out waiting for register ready or
+ *                     command completion
+ *     >0              command indicated error, Status and Resp0-2 are
+ *                     in hw structure.
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt (DOASYNC)
+ *     process (DOWAIT or DOASYNC)
+ */
 static int
 hfa384x_dormem(hfa384x_t *hw,
               enum cmd_mode mode,
@@ -1603,39 +1603,39 @@ hfa384x_dormem(hfa384x_t *hw,
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_dowmem
-*
-* Constructs a writemem CTLX and issues it.
-*
-* NOTE: Any changes to the 'post-submit' code in this function
-*       need to be carried over to hfa384x_cbwmem() since the handling
-*       is virtually identical.
-*
-* Arguments:
-*      hw              device structure
-*      mode            DOWAIT or DOASYNC
-*      page            MAC address space page (CMD format)
-*      offset          MAC address space offset
-*      data            Ptr to data buffer containing write data
-*      len             Length of the data to read (max == 2048)
-*      cmdcb           command callback for async calls, NULL for DOWAIT calls
-*      usercb          user callback for async calls, NULL for DOWAIT calls
-*      usercb_data     user supplied data pointer for async calls.
-*
-* Returns:
-*      0               success
-*      -ETIMEDOUT      timed out waiting for register ready or
-*                      command completion
-*      >0              command indicated error, Status and Resp0-2 are
-*                      in hw structure.
-*
-* Side effects:
-*
-* Call context:
-*      interrupt (DOWAIT)
-*      process (DOWAIT or DOASYNC)
-----------------------------------------------------------------*/
+/*
+ * hfa384x_dowmem
+ *
+ * Constructs a writemem CTLX and issues it.
+ *
+ * NOTE: Any changes to the 'post-submit' code in this function
+ *       need to be carried over to hfa384x_cbwmem() since the handling
+ *       is virtually identical.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     mode            DOWAIT or DOASYNC
+ *     page            MAC address space page (CMD format)
+ *     offset          MAC address space offset
+ *     data            Ptr to data buffer containing write data
+ *     len             Length of the data to read (max == 2048)
+ *     cmdcb           command callback for async calls, NULL for DOWAIT calls
+ *     usercb          user callback for async calls, NULL for DOWAIT calls
+ *     usercb_data     user supplied data pointer for async calls.
+ *
+ * Returns:
+ *     0               success
+ *     -ETIMEDOUT      timed out waiting for register ready or
+ *                     command completion
+ *     >0              command indicated error, Status and Resp0-2 are
+ *                     in hw structure.
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt (DOWAIT)
+ *     process (DOWAIT or DOASYNC)
+ */
 static int
 hfa384x_dowmem(hfa384x_t *hw,
               enum cmd_mode mode,
@@ -1694,28 +1694,28 @@ hfa384x_dowmem(hfa384x_t *hw,
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_disable
-*
-* Issues the disable command to stop communications on one of
-* the MACs 'ports'.  Only macport 0 is valid  for stations.
-* APs may also disable macports 1-6.  Only ports that have been
-* previously enabled may be disabled.
-*
-* Arguments:
-*      hw              device structure
-*      macport         MAC port number (host order)
-*
-* Returns:
-*      0               success
-*      >0              f/w reported failure - f/w status code
-*      <0              driver reported error (timeout|bad arg)
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_disable
+ *
+ * Issues the disable command to stop communications on one of
+ * the MACs 'ports'.  Only macport 0 is valid  for stations.
+ * APs may also disable macports 1-6.  Only ports that have been
+ * previously enabled may be disabled.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     macport         MAC port number (host order)
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported failure - f/w status code
+ *     <0              driver reported error (timeout|bad arg)
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_disable(hfa384x_t *hw, u16 macport)
 {
        int result = 0;
@@ -1732,28 +1732,28 @@ int hfa384x_drvr_disable(hfa384x_t *hw, u16 macport)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_enable
-*
-* Issues the enable command to enable communications on one of
-* the MACs 'ports'.  Only macport 0 is valid  for stations.
-* APs may also enable macports 1-6.  Only ports that are currently
-* disabled may be enabled.
-*
-* Arguments:
-*      hw              device structure
-*      macport         MAC port number
-*
-* Returns:
-*      0               success
-*      >0              f/w reported failure - f/w status code
-*      <0              driver reported error (timeout|bad arg)
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_enable
+ *
+ * Issues the enable command to enable communications on one of
+ * the MACs 'ports'.  Only macport 0 is valid  for stations.
+ * APs may also enable macports 1-6.  Only ports that are currently
+ * disabled may be enabled.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     macport         MAC port number
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported failure - f/w status code
+ *     <0              driver reported error (timeout|bad arg)
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_enable(hfa384x_t *hw, u16 macport)
 {
        int result = 0;
@@ -1770,27 +1770,27 @@ int hfa384x_drvr_enable(hfa384x_t *hw, u16 macport)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_flashdl_enable
-*
-* Begins the flash download state.  Checks to see that we're not
-* already in a download state and that a port isn't enabled.
-* Sets the download state and retrieves the flash download
-* buffer location, buffer size, and timeout length.
-*
-* Arguments:
-*      hw              device structure
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_flashdl_enable
+ *
+ * Begins the flash download state.  Checks to see that we're not
+ * already in a download state and that a port isn't enabled.
+ * Sets the download state and retrieves the flash download
+ * buffer location, buffer size, and timeout length.
+ *
+ * Arguments:
+ *     hw              device structure
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_flashdl_enable(hfa384x_t *hw)
 {
        int result = 0;
@@ -1831,25 +1831,25 @@ int hfa384x_drvr_flashdl_enable(hfa384x_t *hw)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_flashdl_disable
-*
-* Ends the flash download state.  Note that this will cause the MAC
-* firmware to restart.
-*
-* Arguments:
-*      hw              device structure
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_flashdl_disable
+ *
+ * Ends the flash download state.  Note that this will cause the MAC
+ * firmware to restart.
+ *
+ * Arguments:
+ *     hw              device structure
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_flashdl_disable(hfa384x_t *hw)
 {
        /* Check that we're already in the download state */
@@ -1866,35 +1866,35 @@ int hfa384x_drvr_flashdl_disable(hfa384x_t *hw)
        return 0;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_flashdl_write
-*
-* Performs a FLASH download of a chunk of data. First checks to see
-* that we're in the FLASH download state, then sets the download
-* mode, uses the aux functions to 1) copy the data to the flash
-* buffer, 2) sets the download 'write flash' mode, 3) readback and
-* compare.  Lather rinse, repeat as many times an necessary to get
-* all the given data into flash.
-* When all data has been written using this function (possibly
-* repeatedly), call drvr_flashdl_disable() to end the download state
-* and restart the MAC.
-*
-* Arguments:
-*      hw              device structure
-*      daddr           Card address to write to. (host order)
-*      buf             Ptr to data to write.
-*      len             Length of data (host order).
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_flashdl_write
+ *
+ * Performs a FLASH download of a chunk of data. First checks to see
+ * that we're in the FLASH download state, then sets the download
+ * mode, uses the aux functions to 1) copy the data to the flash
+ * buffer, 2) sets the download 'write flash' mode, 3) readback and
+ * compare.  Lather rinse, repeat as many times an necessary to get
+ * all the given data into flash.
+ * When all data has been written using this function (possibly
+ * repeatedly), call drvr_flashdl_disable() to end the download state
+ * and restart the MAC.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     daddr           Card address to write to. (host order)
+ *     buf             Ptr to data to write.
+ *     len             Length of data (host order).
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_flashdl_write(hfa384x_t *hw, u32 daddr, void *buf, u32 len)
 {
        int result = 0;
@@ -2008,37 +2008,37 @@ int hfa384x_drvr_flashdl_write(hfa384x_t *hw, u32 
daddr, void *buf, u32 len)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_getconfig
-*
-* Performs the sequence necessary to read a config/info item.
-*
-* Arguments:
-*      hw              device structure
-*      rid             config/info record id (host order)
-*      buf             host side record buffer.  Upon return it will
-*                      contain the body portion of the record (minus the
-*                      RID and len).
-*      len             buffer length (in bytes, should match record length)
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*      -ENODATA        length mismatch between argument and retrieved
-*                      record.
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_getconfig
+ *
+ * Performs the sequence necessary to read a config/info item.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     rid             config/info record id (host order)
+ *     buf             host side record buffer.  Upon return it will
+ *                     contain the body portion of the record (minus the
+ *                     RID and len).
+ *     len             buffer length (in bytes, should match record length)
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *     -ENODATA        length mismatch between argument and retrieved
+ *                     record.
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_getconfig(hfa384x_t *hw, u16 rid, void *buf, u16 len)
 {
        return hfa384x_dorrid_wait(hw, rid, buf, len);
 }
 
-/*----------------------------------------------------------------
+/*
  * hfa384x_drvr_setconfig_async
  *
  * Performs the sequence necessary to write a config/info item.
@@ -2060,7 +2060,7 @@ int hfa384x_drvr_getconfig(hfa384x_t *hw, u16 rid, void 
*buf, u16 len)
  *
  * Call context:
  *       process
- ----------------------------------------------------------------*/
+ */
 int
 hfa384x_drvr_setconfig_async(hfa384x_t *hw,
                             u16 rid,
@@ -2071,24 +2071,24 @@ hfa384x_drvr_setconfig_async(hfa384x_t *hw,
                                    hfa384x_cb_status, usercb, usercb_data);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_ramdl_disable
-*
-* Ends the ram download state.
-*
-* Arguments:
-*      hw              device structure
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_ramdl_disable
+ *
+ * Ends the ram download state.
+ *
+ * Arguments:
+ *     hw              device structure
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_ramdl_disable(hfa384x_t *hw)
 {
        /* Check that we're already in the download state */
@@ -2105,30 +2105,30 @@ int hfa384x_drvr_ramdl_disable(hfa384x_t *hw)
        return 0;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_ramdl_enable
-*
-* Begins the ram download state.  Checks to see that we're not
-* already in a download state and that a port isn't enabled.
-* Sets the download state and calls cmd_download with the
-* ENABLE_VOLATILE subcommand and the exeaddr argument.
-*
-* Arguments:
-*      hw              device structure
-*      exeaddr         the card execution address that will be
-*                       jumped to when ramdl_disable() is called
-*                      (host order).
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_ramdl_enable
+ *
+ * Begins the ram download state.  Checks to see that we're not
+ * already in a download state and that a port isn't enabled.
+ * Sets the download state and calls cmd_download with the
+ * ENABLE_VOLATILE subcommand and the exeaddr argument.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     exeaddr         the card execution address that will be
+ *                       jumped to when ramdl_disable() is called
+ *                     (host order).
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_ramdl_enable(hfa384x_t *hw, u32 exeaddr)
 {
        int result = 0;
@@ -2171,32 +2171,32 @@ int hfa384x_drvr_ramdl_enable(hfa384x_t *hw, u32 
exeaddr)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_ramdl_write
-*
-* Performs a RAM download of a chunk of data. First checks to see
-* that we're in the RAM download state, then uses the [read|write]mem USB
-* commands to 1) copy the data, 2) readback and compare.  The download
-* state is unaffected.  When all data has been written using
-* this function, call drvr_ramdl_disable() to end the download state
-* and restart the MAC.
-*
-* Arguments:
-*      hw              device structure
-*      daddr           Card address to write to. (host order)
-*      buf             Ptr to data to write.
-*      len             Length of data (host order).
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_ramdl_write
+ *
+ * Performs a RAM download of a chunk of data. First checks to see
+ * that we're in the RAM download state, then uses the [read|write]mem USB
+ * commands to 1) copy the data, 2) readback and compare.  The download
+ * state is unaffected.  When all data has been written using
+ * this function, call drvr_ramdl_disable() to end the download state
+ * and restart the MAC.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     daddr           Card address to write to. (host order)
+ *     buf             Ptr to data to write.
+ *     len             Length of data (host order).
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_ramdl_write(hfa384x_t *hw, u32 daddr, void *buf, u32 len)
 {
        int result = 0;
@@ -2246,37 +2246,37 @@ int hfa384x_drvr_ramdl_write(hfa384x_t *hw, u32 daddr, 
void *buf, u32 len)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_readpda
-*
-* Performs the sequence to read the PDA space.  Note there is no
-* drvr_writepda() function.  Writing a PDA is
-* generally implemented by a calling component via calls to
-* cmd_download and writing to the flash download buffer via the
-* aux regs.
-*
-* Arguments:
-*      hw              device structure
-*      buf             buffer to store PDA in
-*      len             buffer length
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*      -ETIMEDOUT      timeout waiting for the cmd regs to become
-*                      available, or waiting for the control reg
-*                      to indicate the Aux port is enabled.
-*      -ENODATA        the buffer does NOT contain a valid PDA.
-*                      Either the card PDA is bad, or the auxdata
-*                      reads are giving us garbage.
-
-*
-* Side effects:
-*
-* Call context:
-*      process or non-card interrupt.
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_readpda
+ *
+ * Performs the sequence to read the PDA space.  Note there is no
+ * drvr_writepda() function.  Writing a PDA is
+ * generally implemented by a calling component via calls to
+ * cmd_download and writing to the flash download buffer via the
+ * aux regs.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     buf             buffer to store PDA in
+ *     len             buffer length
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *     -ETIMEDOUT      timeout waiting for the cmd regs to become
+ *                     available, or waiting for the control reg
+ *                     to indicate the Aux port is enabled.
+ *     -ENODATA        the buffer does NOT contain a valid PDA.
+ *                     Either the card PDA is bad, or the auxdata
+ *                     reads are giving us garbage.
+ *
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process or non-card interrupt.
+ */
 int hfa384x_drvr_readpda(hfa384x_t *hw, void *buf, unsigned int len)
 {
        int result = 0;
@@ -2366,52 +2366,51 @@ int hfa384x_drvr_readpda(hfa384x_t *hw, void *buf, 
unsigned int len)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_setconfig
-*
-* Performs the sequence necessary to write a config/info item.
-*
-* Arguments:
-*      hw              device structure
-*      rid             config/info record id (in host order)
-*      buf             host side record buffer
-*      len             buffer length (in bytes)
-*
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_setconfig
+ *
+ * Performs the sequence necessary to write a config/info item.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     rid             config/info record id (in host order)
+ *     buf             host side record buffer
+ *     len             buffer length (in bytes)
+ *
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_setconfig(hfa384x_t *hw, u16 rid, void *buf, u16 len)
 {
        return hfa384x_dowrid_wait(hw, rid, buf, len);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_start
-*
-* Issues the MAC initialize command, sets up some data structures,
-* and enables the interrupts.  After this function completes, the
-* low-level stuff should be ready for any/all commands.
-*
-* Arguments:
-*      hw              device structure
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
-
+/*
+ * hfa384x_drvr_start
+ *
+ * Issues the MAC initialize command, sets up some data structures,
+ * and enables the interrupts.  After this function completes, the
+ * low-level stuff should be ready for any/all commands.
+ *
+ * Arguments:
+ *     hw              device structure
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_start(hfa384x_t *hw)
 {
        int result, result1, result2;
@@ -2494,25 +2493,25 @@ int hfa384x_drvr_start(hfa384x_t *hw)
        return result;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_stop
-*
-* Shuts down the MAC to the point where it is safe to unload the
-* driver.  Any subsystem that may be holding a data or function
-* ptr into the driver must be cleared/deinitialized.
-*
-* Arguments:
-*      hw              device structure
-* Returns:
-*      0               success
-*      >0              f/w reported error - f/w status code
-*      <0              driver reported error
-*
-* Side effects:
-*
-* Call context:
-*      process
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_stop
+ *
+ * Shuts down the MAC to the point where it is safe to unload the
+ * driver.  Any subsystem that may be holding a data or function
+ * ptr into the driver must be cleared/deinitialized.
+ *
+ * Arguments:
+ *     hw              device structure
+ * Returns:
+ *     0               success
+ *     >0              f/w reported error - f/w status code
+ *     <0              driver reported error
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process
+ */
 int hfa384x_drvr_stop(hfa384x_t *hw)
 {
        int i;
@@ -2542,27 +2541,27 @@ int hfa384x_drvr_stop(hfa384x_t *hw)
        return 0;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_txframe
-*
-* Takes a frame from prism2sta and queues it for transmission.
-*
-* Arguments:
-*      hw              device structure
-*      skb             packet buffer struct.  Contains an 802.11
-*                      data frame.
-*       p80211_hdr      points to the 802.11 header for the packet.
-* Returns:
-*      0               Success and more buffs available
-*      1               Success but no more buffs
-*      2               Allocation failure
-*      4               Buffer full or queue busy
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_drvr_txframe
+ *
+ * Takes a frame from prism2sta and queues it for transmission.
+ *
+ * Arguments:
+ *     hw              device structure
+ *     skb             packet buffer struct.  Contains an 802.11
+ *                     data frame.
+ *       p80211_hdr      points to the 802.11 header for the packet.
+ * Returns:
+ *     0               Success and more buffs available
+ *     1               Success but no more buffs
+ *     2               Allocation failure
+ *     4               Buffer full or queue busy
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 int hfa384x_drvr_txframe(hfa384x_t *hw, struct sk_buff *skb,
                         union p80211_hdr *p80211_hdr,
                         struct p80211_metawep *p80211_wep)
@@ -2676,19 +2675,19 @@ void hfa384x_tx_timeout(struct wlandevice *wlandev)
        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbctlx_reaper_task
-*
-* Tasklet to delete dead CTLX objects
-*
-* Arguments:
-*      data    ptr to a hfa384x_t
-*
-* Returns:
-*
-* Call context:
-*      Interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbctlx_reaper_task
+ *
+ * Tasklet to delete dead CTLX objects
+ *
+ * Arguments:
+ *     data    ptr to a hfa384x_t
+ *
+ * Returns:
+ *
+ * Call context:
+ *     Interrupt
+ */
 static void hfa384x_usbctlx_reaper_task(unsigned long data)
 {
        hfa384x_t *hw = (hfa384x_t *)data;
@@ -2708,20 +2707,20 @@ static void hfa384x_usbctlx_reaper_task(unsigned long 
data)
        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbctlx_completion_task
-*
-* Tasklet to call completion handlers for returned CTLXs
-*
-* Arguments:
-*      data    ptr to hfa384x_t
-*
-* Returns:
-*      Nothing
-*
-* Call context:
-*      Interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbctlx_completion_task
+ *
+ * Tasklet to call completion handlers for returned CTLXs
+ *
+ * Arguments:
+ *     data    ptr to hfa384x_t
+ *
+ * Returns:
+ *     Nothing
+ *
+ * Call context:
+ *     Interrupt
+ */
 static void hfa384x_usbctlx_completion_task(unsigned long data)
 {
        hfa384x_t *hw = (hfa384x_t *)data;
@@ -2781,23 +2780,23 @@ static void hfa384x_usbctlx_completion_task(unsigned 
long data)
                tasklet_schedule(&hw->reaper_bh);
 }
 
-/*----------------------------------------------------------------
-* unlocked_usbctlx_cancel_async
-*
-* Mark the CTLX dead asynchronously, and ensure that the
-* next command on the queue is run afterwards.
-*
-* Arguments:
-*      hw      ptr to the hfa384x_t structure
-*      ctlx    ptr to a CTLX structure
-*
-* Returns:
-*      0       the CTLX's URB is inactive
-* -EINPROGRESS the URB is currently being unlinked
-*
-* Call context:
-*      Either process or interrupt, but presumably interrupt
-----------------------------------------------------------------*/
+/*
+ * unlocked_usbctlx_cancel_async
+ *
+ * Mark the CTLX dead asynchronously, and ensure that the
+ * next command on the queue is run afterwards.
+ *
+ * Arguments:
+ *     hw      ptr to the hfa384x_t structure
+ *     ctlx    ptr to a CTLX structure
+ *
+ * Returns:
+ *     0       the CTLX's URB is inactive
+ * -EINPROGRESS        the URB is currently being unlinked
+ *
+ * Call context:
+ *     Either process or interrupt, but presumably interrupt
+ */
 static int unlocked_usbctlx_cancel_async(hfa384x_t *hw,
                                         hfa384x_usbctlx_t *ctlx)
 {
@@ -2826,28 +2825,28 @@ static int unlocked_usbctlx_cancel_async(hfa384x_t *hw,
        return ret;
 }
 
-/*----------------------------------------------------------------
-* unlocked_usbctlx_complete
-*
-* A CTLX has completed.  It may have been successful, it may not
-* have been. At this point, the CTLX should be quiescent.  The URBs
-* aren't active and the timers should have been stopped.
-*
-* The CTLX is migrated to the "completing" queue, and the completing
-* tasklet is scheduled.
-*
-* Arguments:
-*      hw              ptr to a hfa384x_t structure
-*      ctlx            ptr to a ctlx structure
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      Either, assume interrupt
-----------------------------------------------------------------*/
+/*
+ * unlocked_usbctlx_complete
+ *
+ * A CTLX has completed.  It may have been successful, it may not
+ * have been. At this point, the CTLX should be quiescent.  The URBs
+ * aren't active and the timers should have been stopped.
+ *
+ * The CTLX is migrated to the "completing" queue, and the completing
+ * tasklet is scheduled.
+ *
+ * Arguments:
+ *     hw              ptr to a hfa384x_t structure
+ *     ctlx            ptr to a ctlx structure
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     Either, assume interrupt
+ */
 static void unlocked_usbctlx_complete(hfa384x_t *hw, hfa384x_usbctlx_t *ctlx)
 {
        /* Timers have been stopped, and ctlx should be in
@@ -2871,22 +2870,22 @@ static void unlocked_usbctlx_complete(hfa384x_t *hw, 
hfa384x_usbctlx_t *ctlx)
        }                       /* switch */
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbctlxq_run
-*
-* Checks to see if the head item is running.  If not, starts it.
-*
-* Arguments:
-*      hw      ptr to hfa384x_t
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      any
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbctlxq_run
+ *
+ * Checks to see if the head item is running.  If not, starts it.
+ *
+ * Arguments:
+ *     hw      ptr to hfa384x_t
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     any
+ */
 static void hfa384x_usbctlxq_run(hfa384x_t *hw)
 {
        unsigned long flags;
@@ -2971,22 +2970,22 @@ static void hfa384x_usbctlxq_run(hfa384x_t *hw)
        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbin_callback
-*
-* Callback for URBs on the BULKIN endpoint.
-*
-* Arguments:
-*      urb             ptr to the completed urb
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbin_callback
+ *
+ * Callback for URBs on the BULKIN endpoint.
+ *
+ * Arguments:
+ *     urb             ptr to the completed urb
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbin_callback(struct urb *urb)
 {
        struct wlandevice *wlandev = urb->context;
@@ -3147,26 +3146,26 @@ static void hfa384x_usbin_callback(struct urb *urb)
                dev_kfree_skb(skb);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbin_ctlx
-*
-* We've received a URB containing a Prism2 "response" message.
-* This message needs to be matched up with a CTLX on the active
-* queue and our state updated accordingly.
-*
-* Arguments:
-*      hw              ptr to hfa384x_t
-*      usbin           ptr to USB IN packet
-*      urb_status      status of this Bulk-In URB
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbin_ctlx
+ *
+ * We've received a URB containing a Prism2 "response" message.
+ * This message needs to be matched up with a CTLX on the active
+ * queue and our state updated accordingly.
+ *
+ * Arguments:
+ *     hw              ptr to hfa384x_t
+ *     usbin           ptr to USB IN packet
+ *     urb_status      status of this Bulk-In URB
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbin_ctlx(hfa384x_t *hw, hfa384x_usbin_t *usbin,
                               int urb_status)
 {
@@ -3269,23 +3268,23 @@ static void hfa384x_usbin_ctlx(hfa384x_t *hw, 
hfa384x_usbin_t *usbin,
                hfa384x_usbctlxq_run(hw);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbin_txcompl
-*
-* At this point we have the results of a previous transmit.
-*
-* Arguments:
-*      wlandev         wlan device
-*      usbin           ptr to the usb transfer buffer
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbin_txcompl
+ *
+ * At this point we have the results of a previous transmit.
+ *
+ * Arguments:
+ *     wlandev         wlan device
+ *     usbin           ptr to the usb transfer buffer
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbin_txcompl(struct wlandevice *wlandev,
                                  hfa384x_usbin_t *usbin)
 {
@@ -3300,23 +3299,23 @@ static void hfa384x_usbin_txcompl(struct wlandevice 
*wlandev,
                prism2sta_ev_tx(wlandev, status);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbin_rx
-*
-* At this point we have a successful received a rx frame packet.
-*
-* Arguments:
-*      wlandev         wlan device
-*      usbin           ptr to the usb transfer buffer
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbin_rx
+ *
+ * At this point we have a successful received a rx frame packet.
+ *
+ * Arguments:
+ *     wlandev         wlan device
+ *     usbin           ptr to the usb transfer buffer
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbin_rx(struct wlandevice *wlandev, struct sk_buff *skb)
 {
        hfa384x_usbin_t *usbin = (hfa384x_usbin_t *)skb->data;
@@ -3396,27 +3395,27 @@ static void hfa384x_usbin_rx(struct wlandevice 
*wlandev, struct sk_buff *skb)
        }
 }
 
-/*----------------------------------------------------------------
-* hfa384x_int_rxmonitor
-*
-* Helper function for int_rx.  Handles monitor frames.
-* Note that this function allocates space for the FCS and sets it
-* to 0xffffffff.  The hfa384x doesn't give us the FCS value but the
-* higher layers expect it.  0xffffffff is used as a flag to indicate
-* the FCS is bogus.
-*
-* Arguments:
-*      wlandev         wlan device structure
-*      rxfrm           rx descriptor read from card in int_rx
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*      Allocates an skb and passes it up via the PF_PACKET interface.
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_int_rxmonitor
+ *
+ * Helper function for int_rx.  Handles monitor frames.
+ * Note that this function allocates space for the FCS and sets it
+ * to 0xffffffff.  The hfa384x doesn't give us the FCS value but the
+ * higher layers expect it.  0xffffffff is used as a flag to indicate
+ * the FCS is bogus.
+ *
+ * Arguments:
+ *     wlandev         wlan device structure
+ *     rxfrm           rx descriptor read from card in int_rx
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *     Allocates an skb and passes it up via the PF_PACKET interface.
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_int_rxmonitor(struct wlandevice *wlandev,
                                  hfa384x_usb_rxfrm_t *rxfrm)
 {
@@ -3474,8 +3473,10 @@ static void hfa384x_int_rxmonitor(struct wlandevice 
*wlandev,
                caphdr->encoding = htonl(1);    /* cck */
        }
 
-       /* Copy the 802.11 header to the skb
-          (ctl frames may be less than a full header) */
+       /*
+        * Copy the 802.11 header to the skb
+        * (ctl frames may be less than a full header)
+        */
        datap = skb_put(skb, hdrlen);
        memcpy(datap, &(rxdesc->frame_control), hdrlen);
 
@@ -3501,23 +3502,23 @@ static void hfa384x_int_rxmonitor(struct wlandevice 
*wlandev,
        p80211netdev_rx(wlandev, skb);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbin_info
-*
-* At this point we have a successful received a Prism2 info frame.
-*
-* Arguments:
-*      wlandev         wlan device
-*      usbin           ptr to the usb transfer buffer
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbin_info
+ *
+ * At this point we have a successful received a Prism2 info frame.
+ *
+ * Arguments:
+ *     wlandev         wlan device
+ *     usbin           ptr to the usb transfer buffer
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbin_info(struct wlandevice *wlandev,
                               hfa384x_usbin_t *usbin)
 {
@@ -3526,22 +3527,22 @@ static void hfa384x_usbin_info(struct wlandevice 
*wlandev,
        prism2sta_ev_info(wlandev, &usbin->infofrm.info);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbout_callback
-*
-* Callback for URBs on the BULKOUT endpoint.
-*
-* Arguments:
-*      urb             ptr to the completed urb
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbout_callback
+ *
+ * Callback for URBs on the BULKOUT endpoint.
+ *
+ * Arguments:
+ *     urb             ptr to the completed urb
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbout_callback(struct urb *urb)
 {
        struct wlandevice *wlandev = urb->context;
@@ -3601,22 +3602,22 @@ static void hfa384x_usbout_callback(struct urb *urb)
        }
 }
 
-/*----------------------------------------------------------------
-* hfa384x_ctlxout_callback
-*
-* Callback for control data on the BULKOUT endpoint.
-*
-* Arguments:
-*      urb             ptr to the completed urb
-*
-* Returns:
-* nothing
-*
-* Side effects:
-*
-* Call context:
-* interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_ctlxout_callback
+ *
+ * Callback for control data on the BULKOUT endpoint.
+ *
+ * Arguments:
+ *     urb             ptr to the completed urb
+ *
+ * Returns:
+ * nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ * interrupt
+ */
 static void hfa384x_ctlxout_callback(struct urb *urb)
 {
        hfa384x_t *hw = urb->context;
@@ -3730,24 +3731,24 @@ static void hfa384x_ctlxout_callback(struct urb *urb)
                hfa384x_usbctlxq_run(hw);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbctlx_reqtimerfn
-*
-* Timer response function for CTLX request timeouts.  If this
-* function is called, it means that the callback for the OUT
-* URB containing a Prism2.x XXX_Request was never called.
-*
-* Arguments:
-*      data            a ptr to the hfa384x_t
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbctlx_reqtimerfn
+ *
+ * Timer response function for CTLX request timeouts.  If this
+ * function is called, it means that the callback for the OUT
+ * URB containing a Prism2.x XXX_Request was never called.
+ *
+ * Arguments:
+ *     data            a ptr to the hfa384x_t
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbctlx_reqtimerfn(unsigned long data)
 {
        hfa384x_t *hw = (hfa384x_t *)data;
@@ -3788,24 +3789,24 @@ static void hfa384x_usbctlx_reqtimerfn(unsigned long 
data)
        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbctlx_resptimerfn
-*
-* Timer response function for CTLX response timeouts.  If this
-* function is called, it means that the callback for the IN
-* URB containing a Prism2.x XXX_Response was never called.
-*
-* Arguments:
-*      data            a ptr to the hfa384x_t
-*
-* Returns:
-*      nothing
-*
-* Side effects:
-*
-* Call context:
-*      interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbctlx_resptimerfn
+ *
+ * Timer response function for CTLX response timeouts.  If this
+ * function is called, it means that the callback for the IN
+ * URB containing a Prism2.x XXX_Response was never called.
+ *
+ * Arguments:
+ *     data            a ptr to the hfa384x_t
+ *
+ * Returns:
+ *     nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     interrupt
+ */
 static void hfa384x_usbctlx_resptimerfn(unsigned long data)
 {
        hfa384x_t *hw = (hfa384x_t *)data;
@@ -3830,21 +3831,21 @@ static void hfa384x_usbctlx_resptimerfn(unsigned long 
data)
        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usb_throttlefn
-*
-*
-* Arguments:
-*      data    ptr to hw
-*
-* Returns:
-*      Nothing
-*
-* Side effects:
-*
-* Call context:
-*      Interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usb_throttlefn
+ *
+ *
+ * Arguments:
+ *     data    ptr to hw
+ *
+ * Returns:
+ *     Nothing
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     Interrupt
+ */
 static void hfa384x_usb_throttlefn(unsigned long data)
 {
        hfa384x_t *hw = (hfa384x_t *)data;
@@ -3869,24 +3870,24 @@ static void hfa384x_usb_throttlefn(unsigned long data)
        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
 }
 
-/*----------------------------------------------------------------
-* hfa384x_usbctlx_submit
-*
-* Called from the doxxx functions to submit a CTLX to the queue
-*
-* Arguments:
-*      hw              ptr to the hw struct
-*      ctlx            ctlx structure to enqueue
-*
-* Returns:
-*      -ENODEV if the adapter is unplugged
-*      0
-*
-* Side effects:
-*
-* Call context:
-*      process or interrupt
-----------------------------------------------------------------*/
+/*
+ * hfa384x_usbctlx_submit
+ *
+ * Called from the doxxx functions to submit a CTLX to the queue
+ *
+ * Arguments:
+ *     hw              ptr to the hw struct
+ *     ctlx            ctlx structure to enqueue
+ *
+ * Returns:
+ *     -ENODEV if the adapter is unplugged
+ *     0
+ *
+ * Side effects:
+ *
+ * Call context:
+ *     process or interrupt
+ */
 static int hfa384x_usbctlx_submit(hfa384x_t *hw, hfa384x_usbctlx_t *ctlx)
 {
        unsigned long flags;
@@ -3906,22 +3907,22 @@ static int hfa384x_usbctlx_submit(hfa384x_t *hw, 
hfa384x_usbctlx_t *ctlx)
        return 0;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_isgood_pdrcore
-*
-* Quick check of PDR codes.
-*
-* Arguments:
-*      pdrcode         PDR code number (host order)
-*
-* Returns:
-*      zero            not good.
-*      one             is good.
-*
-* Side effects:
-*
-* Call context:
-----------------------------------------------------------------*/
+/*
+ * hfa384x_isgood_pdrcore
+ *
+ * Quick check of PDR codes.
+ *
+ * Arguments:
+ *     pdrcode         PDR code number (host order)
+ *
+ * Returns:
+ *     zero            not good.
+ *     one             is good.
+ *
+ * Side effects:
+ *
+ * Call context:
+ */
 static int hfa384x_isgood_pdrcode(u16 pdrcode)
 {
        switch (pdrcode) {
-- 
2.9.2

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to