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

Commit 43446728 authored by Mahati Chamarthy's avatar Mahati Chamarthy Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: Fix printk style warning



This fixes the following checkpatch.pl warnings:
WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(...  to printk(KERN_INFO ...

Signed-off-by: default avatarMahati Chamarthy <mahati.chamarthy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6af19767
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1054,7 +1054,7 @@ void HTSetConnectBwMode(struct rtllib_device *ieee,
		Bandwidth = HT_CHANNEL_WIDTH_20;

	if (pHTInfo->bSwBwInProgress) {
		printk(KERN_INFO "%s: bSwBwInProgress!!\n", __func__);
		pr_info("%s: bSwBwInProgress!!\n", __func__);
		return;
	}
	if (Bandwidth == HT_CHANNEL_WIDTH_20_40) {
@@ -1074,7 +1074,7 @@ void HTSetConnectBwMode(struct rtllib_device *ieee,
		pHTInfo->CurSTAExtChnlOffset = HT_EXTCHNL_OFFSET_NO_EXT;
	}

	printk(KERN_INFO "%s():pHTInfo->bCurBW40MHz:%x\n", __func__,
	pr_info("%s():pHTInfo->bCurBW40MHz:%x\n", __func__,
	       pHTInfo->bCurBW40MHz);

	pHTInfo->bSwBwInProgress = true;