소스 검색

Small coding style fix in lib/asm-offsets.c

Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Michal Simek <monstr@monstr.eu>
Stefan Roese 14 년 전
부모
커밋
0c51c245a1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      lib/asm-offsets.c

+ 2 - 2
lib/asm-offsets.c

@@ -23,10 +23,10 @@ int main(void)
 {
 	/* Round up to make sure size gives nice stack alignment */
 	DEFINE(GENERATED_GBL_DATA_SIZE,
-		(sizeof(struct global_data)+15) & ~15);
+		(sizeof(struct global_data) + 15) & ~15);
 
 	DEFINE(GENERATED_BD_INFO_SIZE,
-		(sizeof(struct bd_info)+15) & ~15);
+		(sizeof(struct bd_info) + 15) & ~15);
 
 	return 0;
 }