remove all trailing whitespaces in one run
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / target / inc / magpie / athos_api.h
index 010dd638d55c0ec118c6e78966698b96d5388242..dc7d682f29f4a9171bea3bc500d276ba101b5f0b 100755 (executable)
 /* HIF support */
 #define HIF_MODULE_INSTALL() hif_module_install(&_A_OS_INDIRECTION_TABLE->hif)
 #define HIF_init(pConfig)                 A_INDIR(hif._init(pConfig))
-#define HIF_start()                       A_INDIR(hif._start())  
-#define HIF_config_pipe(pipe, desc_list)  A_INDIR(hif._config_pipe(pipe, desc_list)) 
-#define HIF_send_buffer(pipe, buf)        A_INDIR(hif._send_buffer(pipe, buf)) 
-#define HIF_return_recv_buf(pipe, buf)    A_INDIR(hif._return_recv_buf(pipe, buf)) 
-#define HIF_isr_handler()                 A_INDIR(hif._isr_handler()) 
+#define HIF_start()                       A_INDIR(hif._start())
+#define HIF_config_pipe(pipe, desc_list)  A_INDIR(hif._config_pipe(pipe, desc_list))
+#define HIF_send_buffer(pipe, buf)        A_INDIR(hif._send_buffer(pipe, buf))
+#define HIF_return_recv_buf(pipe, buf)    A_INDIR(hif._return_recv_buf(pipe, buf))
+#define HIF_isr_handler()                 A_INDIR(hif._isr_handler())
 #define HIF_is_pipe_supported(pipe)       A_INDIR(hif._is_pipe_supported(pipe))
 
 /* VBUF APIs */
  */
 typedef struct _A_athos_indirection_table {
     _A_cmnos_indirection_table_t        cmnos;
-    
+
     /* TBD: to be added */
     struct hif_api                      hif;
     struct vbuf_api                     vbuf;
     struct vdesc_api                    vdesc;
     struct htc_apis                     htc;
-    //WMI_SVC_APIS                        wmi_svc_api;    
+    //WMI_SVC_APIS                        wmi_svc_api;
 } _A_athos_indirection_table_t;
 
 #if 1
@@ -167,7 +167,7 @@ struct _A_os_linkage_check {
 };
 
 
-/* 
+/*
  * A_INIT() handles any initialization needed by the OS abstraction,
  * and it clears the application's BSS, if necessary.  (Application BSS
  * is not cleared if the application is linked into a single image that
@@ -181,7 +181,7 @@ A_INIT(void)
 {
     struct _A_os_linkage_check link_check;
     unsigned int *clrptr;
-    
+
     if (&START_BSS != _A_MAGPIE_INDIRECTION_TABLE->cmnos.start_bss) {
         /* Clear BSS */
         for (clrptr = &START_BSS; clrptr < &END_BSS; clrptr++) {