On 6/1/2022 12:39 AM, Johannes Berg wrote:
From: Johannes Berg <johannes.berg@xxxxxxxxx>
Split the bss_info_changed method to vif_cfg_changed and
link_info_changed, with the latter getting a link ID.
Also change the 'changed' parameter to u64 already, we
know we need that.
[snip]
- wcn36xx_dbg(WCN36XX_DBG_MAC, "mac bss info changed vif %p changed 0x%08x\n",
- vif, changed);
+ wcn36xx_dbg(WCN36XX_DBG_MAC, "mac bss info changed vif %p changed 0x%llx\n",
+ vif, (unsigned long long)changed);
just curious about the typecasting.
https://www.kernel.org/doc/html/latest/core-api/printk-formats.html
indicates we should always be able to use %lld or %llx for u64 hence no
typecasting should be needed