staging: ath6kl: Convert A_UINT8 to u8
[linux-2.6-block.git] / drivers / staging / ath6kl / include / dset_api.h
index 0cc121fd25a01aeab87e0689569ef0a5b6cb1f0c..7ebc588f51c76d70e7aaf9a733beb84f47c77271 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 #endif
 
 /* Called to send a DataSet Open Reply back to the Target. */
-A_STATUS wmi_dset_open_reply(struct wmi_t *wmip,
+int wmi_dset_open_reply(struct wmi_t *wmip,
                              A_UINT32 status,
                              A_UINT32 access_cookie,
                              A_UINT32 size,
@@ -49,9 +49,9 @@ A_STATUS wmi_dset_open_reply(struct wmi_t *wmip,
                              A_UINT32 targ_reply_arg);
 
 /* Called to send a DataSet Data Reply back to the Target. */
-A_STATUS wmi_dset_data_reply(struct wmi_t *wmip,
+int wmi_dset_data_reply(struct wmi_t *wmip,
                              A_UINT32 status,
-                             A_UINT8 *host_buf,
+                             u8 *host_buf,
                              A_UINT32 length,
                              A_UINT32 targ_buf,
                              A_UINT32 targ_reply_fn,