소스 검색

qcacmn: serialization: Replace explicit comparison to NULL

Per the Linux Kernel coding style, as enforced by the kernel
checkpatch script, pointers should not be explicitly compared to
NULL. Therefore within umac serialization replace any such comparisons
with logical operations performed on the pointer itself.

Change-Id: I6b8ff46dacfd2f9a883262f6336f35f5aff499bc
CRs-Fixed: 2420150
Jeff Johnson 6 년 전
부모
커밋
a95ea4f9ee
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      umac/cmn_services/serialization/src/wlan_serialization_legacy_api.c

+ 2 - 2
umac/cmn_services/serialization/src/wlan_serialization_legacy_api.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2019 The Linux Foundation. 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
@@ -43,7 +43,7 @@ static struct wlan_objmgr_pdev *wlan_serialization_get_first_pdev(
 	for (i = 0; i < WLAN_UMAC_MAX_PDEVS; i++) {
 		pdev = wlan_objmgr_get_pdev_by_id(psoc, i,
 					WLAN_SERIALIZATION_ID);
-		if (pdev != NULL)
+		if (pdev)
 			break;
 	}