On 02/01/2012 11:03 AM, Chilam Ng wrote: > The nominal_phy field is uninitialized. Initialize it to min_phy_rate for create_qos > > Signed-off-by: Chilam Ng <chilamng@xxxxxxxxxxxxxxxx> Thanks, applied with a small change: > + pstream.nominal_phy = ((le32_to_cpu(pstream.min_phy_rate) / 1000) / 1000); Checkpatch complained that this line was too long so I simplified the equation: pstream.nominal_phy = le32_to_cpu(pstream.min_phy_rate) / 1000000; Please holler if I did the math wrong :) Kalle -- 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