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

Commit f3f9f332 authored by Masanari Iida's avatar Masanari Iida Committed by David S. Miller
Browse files

emulex: benet: Add a missing CR in the end of message



Missing a CR in printk causes 2 messages printed in one line.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d4e5979c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1948,7 +1948,7 @@ static int be_rx_cqs_create(struct be_adapter *adapter)


	if (adapter->num_rx_qs != MAX_RX_QS)
	if (adapter->num_rx_qs != MAX_RX_QS)
		dev_info(&adapter->pdev->dev,
		dev_info(&adapter->pdev->dev,
			"Created only %d receive queues", adapter->num_rx_qs);
			"Created only %d receive queues\n", adapter->num_rx_qs);


	return 0;
	return 0;
}
}