On Sat, 21 Oct 2023 at 16:52, <greearb@xxxxxxxxxxxxxxx> wrote: > > From: Ben Greear <greearb@xxxxxxxxxxxxxxx> > > The sins of similar variable names and passing void pointers > are seen again in wireless-next tree. > > Wrong data was passed into the rdev_inform_bss method causing > crashes. > Is there any good reason for the void pointers? The patch you propose fixes the immediate problem, but if the void pointers were replaced with struct pointers, the compiler could catch this sort of problem. I imagine there could be similar confusion with this struct and function having the same name: 0 scan.c 1999 struct cfg80211_inform_single_bss_data { 1 scan.c 2023 cfg80211_inform_single_bss_data(struct wiphy *wiphy, Maybe renaming the following: struct cfg80211_inform_bss *drv_data = data->drv_data; to struct cfg80211_inform_bss *c_inform_bss1 = data->drv_data; would reduce the confusion.