From a79c959a11c3550ea2e3767277e48c8fd7bff563 Mon Sep 17 00:00:00 2001 From: Kyle Mohr <6644803+kylefmohr@users.noreply.github.com> Date: Fri, 4 Nov 2022 13:04:50 -0500 Subject: [PATCH] Restore a couple of mistakenly deleted semicolons --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 60ccf41..667c79f 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ by editing the file `hal/rl8192e/rtl8192e_phycfg.c` and changing the lines below // Useful if you want to keep power usage low while still boosting/decreasing transmit power. // Can take a negative value as well to reduce power. // Zero disables it. Default: 2, for a tiny boost. -int transmit_power_boost = 2 +int transmit_power_boost = 2; // (ADVANCED) To know what transmit powers this device decides to use dynamically, see: // https://github.com/lwfinger/rtl8192ee/blob/42ad92dcc71cb15a62f8c39e50debe3a28566b5f/hal/phydm/rtl8192e/halhwimg8192e_rf.c#L1310 @@ -178,7 +178,7 @@ int transmit_power_boost = 2 // Transmit Power Override // This value completely overrides the driver's calculations and uses only one value for all transmissions. // Zero disables it. Default: 0 -int transmit_power_override = 0 +int transmit_power_override = 0; /* Manual Transmit Power Control */