Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1385974 > unrolled thread

[PATCH v2] rtl8712: Fixed alignment to match open parenthesis

Started byParth Sane <laerdevstudios@gmail.com>
First post2016-04-25 03:10 +0200
Last post2016-04-25 10:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v2] rtl8712: Fixed alignment to match open parenthesis Parth Sane <laerdevstudios@gmail.com> - 2016-04-25 03:10 +0200
    Re: [PATCH v2] rtl8712: Fixed alignment to match open parenthesis Giedrius Statkevičius   <giedrius.statkevicius@gmail.com> - 2016-04-25 10:30 +0200

#1385974 — [PATCH v2] rtl8712: Fixed alignment to match open parenthesis

FromParth Sane <laerdevstudios@gmail.com>
Date2016-04-25 03:10 +0200
Subject[PATCH v2] rtl8712: Fixed alignment to match open parenthesis
Message-ID<rrDce-5CF-11@gated-at.bofh.it>
Added missing signed off by line and fixed alignment to match 
open parenthesis.

Signed-off-by: Parth Sane <laerdevstudios@gmail.com>
---
 drivers/staging/rtl8712/hal_init.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c
index 0c76fbc..0dd458d 100644
--- a/drivers/staging/rtl8712/hal_init.c
+++ b/drivers/staging/rtl8712/hal_init.c
@@ -197,8 +197,8 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
 						       0x0000ffff);
 			memcpy(ppayload, ptr, dump_imem_sz);
 			r8712_write_mem(padapter, RTL8712_DMA_VOQ,
-				  dump_imem_sz + TXDESC_SIZE,
-				  (u8 *)ptx_desc);
+					dump_imem_sz + TXDESC_SIZE,
+					(u8 *)ptx_desc);
 			ptr += dump_imem_sz;
 			imem_sz -= dump_imem_sz;
 		} while (imem_sz > 0);
@@ -226,7 +226,8 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
 						       0x0000ffff);
 			memcpy(ppayload, ptr, dump_emem_sz);
 			r8712_write_mem(padapter, RTL8712_DMA_VOQ,
-				  dump_emem_sz + TXDESC_SIZE, (u8 *)ptx_desc);
+					dump_emem_sz + TXDESC_SIZE,
+					(u8 *)ptx_desc);
 			ptr += dump_emem_sz;
 			emem_sz -= dump_emem_sz;
 		} while (emem_sz > 0);
@@ -278,7 +279,7 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
 		ptx_desc->txdw0 |= cpu_to_le32(BIT(28));
 		memcpy(ppayload, &fwhdr.fwpriv, fwhdr.fw_priv_sz);
 		r8712_write_mem(padapter, RTL8712_DMA_VOQ,
-			  fwhdr.fw_priv_sz + TXDESC_SIZE, (u8 *)ptx_desc);
+				fwhdr.fw_priv_sz + TXDESC_SIZE, (u8 *)ptx_desc);
 
 		/* polling dmem code done */
 		i = 100;
-- 
1.9.1

[toc] | [next] | [standalone]


#1386102

FromGiedrius Statkevičius <giedrius.statkevicius@gmail.com>
Date2016-04-25 10:30 +0200
Message-ID<rrK42-2xY-19@gated-at.bofh.it>
In reply to#1385974
On Mon, Apr 25, 2016 at 4:00 AM, Parth Sane <laerdevstudios@gmail.com> wrote:
> Added missing signed off by line and fixed alignment to match
> open parenthesis.

Put "Added missing signed off by line" below the ---. This is not what
we want to have in change logs.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web