Przeglądaj źródła

qcacmn: Parse file name info as well from oem data event

Based on new requirement parse file name info as well from
oem data event.

Change-Id: Ifd4d086402821cd42e267f48879dc31a74017fa1
CRs-Fixed: 3262696
Ashish Kumar Dhanotiya 2 lat temu
rodzic
commit
09c76ef447
1 zmienionych plików z 4 dodań i 0 usunięć
  1. 4 0
      wmi/inc/wmi_unified_param.h

+ 4 - 0
wmi/inc/wmi_unified_param.h

@@ -745,6 +745,8 @@ struct channel_param {
  * @pdev_vdev_flag: 0 when vdev is valid, 1 when pdev is valid
  * @is_host_pdev_id: 1 for host pdev id, 0 otherwise
  * @data: the pointer to the buffer containing data
+ * @file_name_len: Length of file name
+ * @file_name: Pointer to the buffer containing file name
  */
 struct oem_data {
 	uint8_t vdev_id;
@@ -753,6 +755,8 @@ struct oem_data {
 	bool pdev_vdev_flag;
 	bool is_host_pdev_id;
 	uint8_t *data;
+	uint32_t file_name_len;
+	uint8_t *file_name;
 };
 #endif