Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1568846
| From | Martin Karamihov <martinowar@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] staging: rtl8188eu: checkpatch fixes: removed not necessary braces {} |
| Date | 2017-01-28 09:40 +0100 |
| Message-ID | <t4wI9-7pN-1@gated-at.bofh.it> (permalink) |
| References | <t4wI9-7pN-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Martin Karamihov <martinowar@gmail.com>
---
drivers/staging/rtl8188eu/hal/bb_cfg.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8188eu/hal/bb_cfg.c b/drivers/staging/rtl8188eu/hal/bb_cfg.c
index 134fa6c595a8..26e0ef224299 100644
--- a/drivers/staging/rtl8188eu/hal/bb_cfg.c
+++ b/drivers/staging/rtl8188eu/hal/bb_cfg.c
@@ -534,9 +534,8 @@ static void store_pwrindex_offset(struct adapter *adapter,
power_level_offset[11] = data;
if (regaddr == rTxAGC_B_Mcs11_Mcs08)
power_level_offset[12] = data;
- if (regaddr == rTxAGC_B_Mcs15_Mcs12) {
+ if (regaddr == rTxAGC_B_Mcs15_Mcs12)
power_level_offset[13] = data;
- }
}
static void rtl_addr_delay(struct adapter *adapt,
--
2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] staging: rtl8188eu: checkpatch fixes: removed not necessary braces {} Martin Karamihov <martinowar@gmail.com> - 2017-01-28 09:40 +0100
Re: [PATCH] staging: rtl8188eu: checkpatch fixes: removed not necessary braces {} Greg KH <gregkh@linuxfoundation.org> - 2017-01-28 10:00 +0100
csiph-web