diff mbox

[U-Boot,v2,2/2] armv8: mmu: add space around operator

Message ID 1502956550-16638-1-git-send-email-andy.yan@rock-chips.com
State Accepted
Commit 347e30e1720ea6c0231f81d278b076a39280a314
Delegated to: Tom Rini
Headers show

Commit Message

Andy Yan Aug. 17, 2017, 7:55 a.m. UTC
Add space around operator "+", make it
match the coding style.

Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
---

Changes in v2: None

 arch/arm/include/asm/armv8/mmu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Philipp Tomsich Aug. 18, 2017, 1:01 p.m. UTC | #1
> Add space around operator "+", make it
> match the coding style.
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> ---
> 
> Changes in v2: None
> 
>  arch/arm/include/asm/armv8/mmu.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Andy Yan Aug. 31, 2017, 11:51 a.m. UTC | #2
ping
On 2017年08月18日 21:01, Philipp Tomsich wrote:
>> Add space around operator "+", make it
>> match the coding style.
>>
>> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
>> ---
>>
>> Changes in v2: None
>>
>>   arch/arm/include/asm/armv8/mmu.h | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
>
>
>
York Sun Aug. 31, 2017, 2:54 p.m. UTC | #3
On 08/17/2017 12:56 AM, Andy Yan wrote:
> Add space around operator "+", make it
> match the coding style.
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> ---
> 
> Changes in v2: None

Reviewed-by: York Sun <york.sun@nxp.com>
Tom Rini Sept. 13, 2017, 2:29 a.m. UTC | #4
On Thu, Aug 17, 2017 at 03:55:50PM +0800, Andy Yan wrote:

> Add space around operator "+", make it
> match the coding style.
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Reviewed-by: York Sun <york.sun@nxp.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/arch/arm/include/asm/armv8/mmu.h b/arch/arm/include/asm/armv8/mmu.h
index 7752741..6121aab 100644
--- a/arch/arm/include/asm/armv8/mmu.h
+++ b/arch/arm/include/asm/armv8/mmu.h
@@ -16,7 +16,7 @@ 
 #undef  PAGE_SIZE
 #define PAGE_SHIFT		12
 #define PAGE_SIZE		(1 << PAGE_SHIFT)
-#define PAGE_MASK		(~(PAGE_SIZE-1))
+#define PAGE_MASK		(~(PAGE_SIZE - 1))
 
 /***************************************************************/