|
@@ -331,7 +331,7 @@ sch_set_fixed_beacon_fields(tpAniSirGlobal mac_ctx, tpPESession session)
|
|
|
}
|
|
|
|
|
|
n_status = dot11f_pack_beacon1(mac_ctx, bcn_1, ptr,
|
|
|
- SCH_MAX_BEACON_SIZE - offset, &n_bytes);
|
|
|
+ SIR_MAX_BEACON_SIZE - offset, &n_bytes);
|
|
|
if (DOT11F_FAILED(n_status)) {
|
|
|
pe_err("Failed to packed a tDot11fBeacon1 (0x%08x)",
|
|
|
n_status);
|
|
@@ -589,8 +589,8 @@ sch_set_fixed_beacon_fields(tpAniSirGlobal mac_ctx, tpPESession session)
|
|
|
}
|
|
|
|
|
|
n_status = dot11f_pack_beacon2(mac_ctx, bcn_2,
|
|
|
- session->pSchBeaconFrameEnd,
|
|
|
- SCH_MAX_BEACON_SIZE, &n_bytes);
|
|
|
+ session->pSchBeaconFrameEnd,
|
|
|
+ SIR_MAX_BEACON_SIZE, &n_bytes);
|
|
|
if (DOT11F_FAILED(n_status)) {
|
|
|
pe_err("Failed to packed a tDot11fBeacon2 (0x%08x)",
|
|
|
n_status);
|
|
@@ -630,8 +630,9 @@ sch_set_fixed_beacon_fields(tpAniSirGlobal mac_ctx, tpPESession session)
|
|
|
/* TODO: Append additional IE here. */
|
|
|
if (addn_ielen > 0)
|
|
|
sch_append_addn_ie(mac_ctx, session,
|
|
|
- session->pSchBeaconFrameEnd + n_bytes,
|
|
|
- SCH_MAX_BEACON_SIZE, &n_bytes, addn_ie, addn_ielen);
|
|
|
+ session->pSchBeaconFrameEnd + n_bytes,
|
|
|
+ SIR_MAX_BEACON_SIZE, &n_bytes,
|
|
|
+ addn_ie, addn_ielen);
|
|
|
|
|
|
session->schBeaconOffsetEnd = (uint16_t) n_bytes;
|
|
|
extra_ie_len = n_bytes - extra_ie_offset;
|