Forráskód Böngészése

qcacld-3.0: Use QDF_DEBUG_PANIC when mac_open fails

Currently in the driver, if mac_open fails we just print
the error message and return. To debug why mac_open failed,
crash dumps are required. So, to collect crash dumps use
QDF_DEBUG_PANIC when mac_open fails.

Change-Id: I61f49d002caa0aaf5927c1d0f60c6d805dfefbd9
CRs-Fixed: 3632314
Aditya Kodukula 1 éve
szülő
commit
9b958c9516
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      core/mac/src/sys/legacy/src/system/src/mac_init_api.c

+ 2 - 2
core/mac/src/sys/legacy/src/system/src/mac_init_api.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -150,7 +150,7 @@ QDF_STATUS mac_open(struct wlan_objmgr_psoc *psoc, mac_handle_t *mac_handle,
 
 	status = pe_open(mac, cds_cfg);
 	if (QDF_IS_STATUS_ERROR(status)) {
-		pe_err("failed to open PE; status:%u", status);
+		QDF_DEBUG_PANIC("failed to open PE; status: %u", status);
 		goto release_psoc_ref;
 	}