Explorar el Código

qcacld-3.0: Fix build error caused by wlan_mlo_link_peer_attach

There is build error because parameter of wlan_mlo_link_peer_attach
is changed.
Add new parameter when calling wlan_mlo_link_peer_attach.

Change-Id: If676a16e37db993b7dc0a188a73f6ce8df1ce154
CRs-Fixed: 3066676
Bing Sun hace 3 años
padre
commit
bb5ed04a32
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      core/mac/src/pe/lim/lim_mlo.c

+ 2 - 1
core/mac/src/pe/lim/lim_mlo.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 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 above
@@ -607,7 +608,7 @@ void lim_ap_mlo_sta_peer_ind(struct mac_context *mac,
 			ml_peer = wlan_mlo_get_mlpeer_by_aid(
 					pe_session->vdev->mlo_dev_ctx,
 					sta->assocId);
-			wlan_mlo_link_peer_attach(ml_peer, peer);
+			wlan_mlo_link_peer_attach(ml_peer, peer, NULL);
 		}
 		wlan_objmgr_peer_release_ref(peer, WLAN_LEGACY_MAC_ID);
 	} else {