Dan Carpenter <dan.carpenter@xxxxxxxxxx> wrote: > We accidentally return success when adm8211_alloc_rings() fails but we > should preserve the error code. > > Fixes: cc0b88cf5ecf ("[PATCH] Add adm8211 802.11b wireless driver") > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> > > diff --git a/drivers/net/wireless/admtek/adm8211.c b/drivers/net/wireless/admtek/adm8211.c > index 2b4a3eb38dfa..098c814e22c8 100644 > --- a/drivers/net/wireless/admtek/adm8211.c > +++ b/drivers/net/wireless/admtek/adm8211.c > @@ -1863,7 +1863,8 @@ static int adm8211_probe(struct pci_dev *pdev, > priv->rx_ring_size = rx_ring_size; > priv->tx_ring_size = tx_ring_size; > > - if (adm8211_alloc_rings(dev)) { > + err = adm8211_alloc_rings(dev); > + if (err) { > printk(KERN_ERR "%s (adm8211): Cannot allocate TX/RX ring\n", > pci_name(pdev)); > goto err_iounmap; Patch applied to wireless-drivers-next.git, thanks. c705a6b3aa78 adm80211: return an error if adm8211_alloc_rings() fails -- https://patchwork.kernel.org/patch/9464449/ Documentation about submitting wireless patches and checking status from patchwork: https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html