Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1568846 > unrolled thread
| Started by | Martin Karamihov <martinowar@gmail.com> |
|---|---|
| First post | 2017-01-28 09:40 +0100 |
| Last post | 2017-01-28 10:00 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[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
| From | Martin Karamihov <martinowar@gmail.com> |
|---|---|
| Date | 2017-01-28 09:40 +0100 |
| Subject | [PATCH] staging: rtl8188eu: checkpatch fixes: removed not necessary braces {} |
| Message-ID | <t4wI9-7pN-1@gated-at.bofh.it> |
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
[toc] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2017-01-28 10:00 +0100 |
| Subject | Re: [PATCH] staging: rtl8188eu: checkpatch fixes: removed not necessary braces {} |
| Message-ID | <t4x1v-7A3-11@gated-at.bofh.it> |
| In reply to | #1568846 |
On Sat, Jan 28, 2017 at 10:34:36AM +0200, Martin Karamihov wrote: > Signed-off-by: Martin Karamihov <martinowar@gmail.com> > --- > drivers/staging/rtl8188eu/hal/bb_cfg.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) I can't take a patch with no changelog text :(
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web