Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 088ea189 authored by Darren Jenkins's avatar Darren Jenkins Committed by John W. Linville
Browse files

drivers/net/wireless/p54/txrx.c Fix off by one error



fix off by one error in the queue size check of p54_tx_qos_accounting_alloc()

Coverity CID: 13314

Signed-off-by: default avatarDarren Jenkins <darrenrjenkins@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent fbc87d67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@ static int p54_tx_qos_accounting_alloc(struct p54_common *priv,
	struct p54_tx_queue_stats *queue;
	unsigned long flags;

	if (WARN_ON(p54_queue > P54_QUEUE_NUM))
	if (WARN_ON(p54_queue >= P54_QUEUE_NUM))
		return -EINVAL;

	queue = &priv->tx_stats[p54_queue];