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

Commit c2e191eb authored by Feyza Yavuz's avatar Feyza Yavuz Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192e: rtl8192e: Remove unnecessary return statements



Patch the following checkpatch.pl warnings

drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c:304: warning:
void function return statements are not generally useful
drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c:83: warning:
void function return statements are not generally useful

Signed-off-by: default avatarFeyza Yavuz <feyzaayavuz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 66abf01f
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -79,7 +79,6 @@ void PHY_SetRF8256Bandwidth(struct net_device *dev,


		}
		}
	}
	}
	return;
}
}


bool PHY_RF8256_Config(struct net_device *dev)
bool PHY_RF8256_Config(struct net_device *dev)
@@ -300,5 +299,4 @@ void PHY_SetRF8256OFDMTxPower(struct net_device *dev, u8 powerlevel)
		rtl8192_setBBreg(dev, RegOffset[index], 0x7f7f7f7f, writeVal);
		rtl8192_setBBreg(dev, RegOffset[index], 0x7f7f7f7f, writeVal);
	}
	}


	return;
}
}