int
 hfa384x_drvr_hostscanresults( hfa384x_t *hw);
 int
-hfa384x_drvr_low_level(hfa384x_t *hw, hfa384x_metacmd_t *cmd);
-int
 hfa384x_drvr_mmi_read(hfa384x_t *hw, u32 address, u32 *result);
 int
 hfa384x_drvr_mmi_write(hfa384x_t *hw, u32 address, u32 data);
 
                                        writeoffset,
                                        writebuf,
                                        writelen );
-#if 0
-
-Comment out for debugging, assume the write was successful.
-                       if (result) {
-                               printk(KERN_ERR
-                                       "Write to dl buffer failed, "
-                                       "result=0x%04x. Aborting.\n",
-                                       result);
-                               goto exit_proc;
-                       }
-#endif
-
                }
 
                /* set the download 'write flash' mode */
        return -EIO;
 }
 
-/*----------------------------------------------------------------
-* hfa384x_drvr_low_level
-*
-* Write test commands to the card.  Some test commands don't make
-* sense without prior set-up.  For example, continous TX isn't very
-* useful until you set the channel.  That functionality should be
-*
-* Side effects:
-*
-* Call context:
-*      process thread
-* -----------------------------------------------------------------*/
-int hfa384x_drvr_low_level(hfa384x_t *hw, hfa384x_metacmd_t *cmd)
-{
-       int             result;
-
-       /* Do i need a host2hfa... conversion ? */
-
-       result = hfa384x_docmd_wait(hw, cmd);
-
-       return result;
-}
-
 /*----------------------------------------------------------------
 * hfa384x_drvr_ramdl_disable
 *