From: Masakazu Mokuno <mokuno@xxxxxxxxxxxxx> Date: Mon, 21 Jan 2008 20:23:15 +0900 > Sorry for my intermittent posts. No problem. I am sorry for being to busy to get back to active work on this patch set. > > -prism54_translate_bss(struct net_device *ndev, char *current_ev, > > - char *end_buf, struct obj_bss *bss, char noise) > > +prism54_translate_bss(struct net_device *ndev, struct iw_request_info *info, > > + char *current_ev, char *end_buf, struct obj_bss *bss, > > + char noise) > > { > > struct iw_event iwe; /* Temporary buffer */ > > short cap; > > <snip> > > > @@ -2728,9 +2730,12 @@ prism2_ioctl_scan_req(struct net_device *ndev, > > rvalue |= mgt_get_request(priv, DOT11_OID_BSSLIST, 0, NULL, &r); > > bsslist = r.ptr; > > > > + info.cmd = PRISM54_HOSTAPD; > > + info.flags = 0; > > + > > /* ok now, scan the list and translate its info */ > > for (i = 0; i < min(IW_MAX_AP, (int) bsslist->nr); i++) > > - current_ev = prism54_translate_bss(ndev, current_ev, > > + current_ev = prism54_translate_bss(ndev, current_ev, &info, > > The order of the arguments is wrong. > > current_ev = prism54_translate_bss(ndev, &info, current_ev, Indeed, I will fix this up in a future version. I will also investigate why this escaped my build testing. It is merely a PCI driver, so it should have been included in the "make allmodconfig" test builds I do on sparc64. Thank you. - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html