On Tue, 2010-10-05 at 13:11 +0200, juuso.oikarinen@xxxxxxxxx wrote: > From: Juuso Oikarinen <juuso.oikarinen@xxxxxxxxx> > > Currently a command to initialize extended radio parameter tables in the > hardware is missing. > > Add the initialization > > Signed-off-by: Juuso Oikarinen <juuso.oikarinen@xxxxxxxxx> > --- > v2: change the name of the length macro for the TX power compensation table Thanks for fixing it, it looks clearer now. Reviewed-by: Luciano Coelho <luciano.coelho@xxxxxxxxx> A couple of comments below. [...] > diff --git a/drivers/net/wireless/wl12xx/wl1271_cmd.h b/drivers/net/wireless/wl12xx/wl1271_cmd.h > index 33b946b..4e8b464 100644 > --- a/drivers/net/wireless/wl12xx/wl1271_cmd.h > +++ b/drivers/net/wireless/wl12xx/wl1271_cmd.h [...] > @@ -363,6 +365,16 @@ struct wl1271_radio_parms_cmd { > u8 padding3[2]; > } __packed; > > +struct wl1271_ext_radio_parms_cmd { > + struct wl1271_cmd_header header; > + > + struct wl1271_cmd_test_header test; > + > + u8 tx_per_channel_power_compensation_2[CONF_TX_PWR_COMPENSATION_LEN_2]; > + u8 tx_per_channel_power_compensation_5[CONF_TX_PWR_COMPENSATION_LEN_5]; > + u8 padding[3]; > +} __attribute__ ((packed)); > + This should be __packed nowadays. But I'll change that before applying the patch, so no need to resend. [...] > diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c > index cb18f22..8d33a2b 100644 > --- a/drivers/net/wireless/wl12xx/wl1271_main.c > +++ b/drivers/net/wireless/wl12xx/wl1271_main.c > @@ -242,6 +242,16 @@ static struct conf_drv_settings default_conf = { > .max_dwell_time_passive = 60000, > .num_probe_reqs = 2, > }, > + .rf = { > + .tx_per_channel_power_compensation_2 = { > + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, > + }, > + .tx_per_channel_power_compensation_5 = { > + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, > + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, > + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, > + }, > + }, > }; I guess we should not hardcode this in the driver, but add it to the NVS file. But let's think about that later, because we need to agree on changing the NVS structure first. -- Cheers, Luca. -- 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