Browse Source

qcacld-3.0: add hang event data to ssr driver dump

Current code does not include hang event data to ssr driver dump.
Fix this by adding struct registration/unregistration.

Change-Id: I6c21cbf7b2d0a242e1469b32820373a61235ac7a
CRs-Fixed: 3443220
Mohammed Ahmed 2 years ago
parent
commit
4c14dfa315
1 changed files with 4 additions and 0 deletions
  1. 4 0
      core/hdd/src/wlan_hdd_driver_ops.c

+ 4 - 0
core/hdd/src/wlan_hdd_driver_ops.c

@@ -1801,6 +1801,9 @@ static int wlan_hdd_pld_probe(struct device *dev,
 		hdd_err("Invalid bus type %d->%d", pld_bus_type, bus_type);
 		return -EINVAL;
 	}
+	qdf_ssr_driver_dump_register_region("hang_event_data",
+					    g_fw_host_hang_event,
+					    sizeof(g_fw_host_hang_event));
 
 	return hdd_soc_probe(dev, bdev, id, bus_type);
 }
@@ -1817,6 +1820,7 @@ static void wlan_hdd_pld_remove(struct device *dev, enum pld_bus_type bus_type)
 	hdd_enter();
 
 	hdd_soc_remove(dev);
+	qdf_ssr_driver_dump_unregister_region("hang_event_data");
 
 	hdd_exit();
 }