public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [patch 0/8] FatPkg: Fix coding style issues
@ 2016-12-08 10:54 Dandan Bi
  2016-12-08 10:54 ` [patch 1/8] FatPkg\EnhancedFatDxe: Avoid Non-Boolean type uses as Boolean Dandan Bi
                   ` (7 more replies)
  0 siblings, 8 replies; 27+ messages in thread
From: Dandan Bi @ 2016-12-08 10:54 UTC (permalink / raw)
  To: edk2-devel; +Cc: Ruiyu Ni

The patch series make the coding style of FatPkg align with EDKII rules.

Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <dandan.bi@intel.com>

Dandan Bi (8):
  FatPkg\EnhancedFatDxe: Avoid Non-Boolean type uses as Boolean
  FatPkg\EnhancedFatDxe: Initialize variable after declaration
  FatPkg\EnhancedFatDxe: Make function prototype align with definition
  FatPkg\EnhancedFatDxe: Make the variable name follow rule
  FatPkg\EnhancedFatDxe: Use typedef for complex type
  FatPkg\EnhancedFatDxe: Make the comments align with EDKII coding style
  FatPkg\EnhancedFatDxe: Add comments for functions
  FatPkg: Fix format issues in dec/inf/dsc files

 FatPkg/EnhancedFatDxe/ComponentName.c    |   10 +-
 FatPkg/EnhancedFatDxe/Data.c             |   16 +-
 FatPkg/EnhancedFatDxe/Debug.c            |   34 +-
 FatPkg/EnhancedFatDxe/Delete.c           |   35 +-
 FatPkg/EnhancedFatDxe/DirectoryCache.c   |  120 +--
 FatPkg/EnhancedFatDxe/DirectoryManage.c  |  742 +++++++-----------
 FatPkg/EnhancedFatDxe/DiskCache.c        |  307 +++-----
 FatPkg/EnhancedFatDxe/Fat.c              |  227 +++---
 FatPkg/EnhancedFatDxe/Fat.h              | 1262 +++++++++++++++++++++++-------
 FatPkg/EnhancedFatDxe/Fat.inf            |    2 +-
 FatPkg/EnhancedFatDxe/FatFileSystem.h    |   25 +-
 FatPkg/EnhancedFatDxe/FileName.c         |  276 +++----
 FatPkg/EnhancedFatDxe/FileSpace.c        |  394 ++++------
 FatPkg/EnhancedFatDxe/Flush.c            |  252 +++---
 FatPkg/EnhancedFatDxe/Hash.c             |  158 ++--
 FatPkg/EnhancedFatDxe/Info.c             |  358 ++++-----
 FatPkg/EnhancedFatDxe/Init.c             |  111 +--
 FatPkg/EnhancedFatDxe/Misc.c             |  420 ++++------
 FatPkg/EnhancedFatDxe/Open.c             |  172 ++--
 FatPkg/EnhancedFatDxe/OpenVolume.c       |   40 +-
 FatPkg/EnhancedFatDxe/ReadWrite.c        |  404 ++++------
 FatPkg/EnhancedFatDxe/UnicodeCollation.c |    6 +-
 FatPkg/FatPei/FatPei.inf                 |    6 +-
 FatPkg/FatPkg.dec                        |    1 -
 FatPkg/FatPkg.dsc                        |    3 +-
 25 files changed, 2612 insertions(+), 2769 deletions(-)

-- 
1.9.5.msysgit.1



^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2016-12-20 23:26 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-08 10:54 [patch 0/8] FatPkg: Fix coding style issues Dandan Bi
2016-12-08 10:54 ` [patch 1/8] FatPkg\EnhancedFatDxe: Avoid Non-Boolean type uses as Boolean Dandan Bi
2016-12-09  1:14   ` Ni, Ruiyu
2016-12-08 10:54 ` [patch 2/8] FatPkg\EnhancedFatDxe: Initialize variable after declaration Dandan Bi
2016-12-08 17:27   ` Kurt Kennett
2016-12-08 23:11     ` Andrew Fish
2016-12-20 23:26       ` Brian J. Johnson
2016-12-08 23:47     ` Yao, Jiewen
2016-12-09  0:26       ` Kurt Kennett
2016-12-09  0:36         ` Andrew Fish
2016-12-09  0:40           ` Yao, Jiewen
2016-12-09 16:32             ` Kurt Kennett
2016-12-09  0:40           ` Kurt Kennett
2016-12-09  0:57   ` Ni, Ruiyu
2016-12-09  1:18     ` Bi, Dandan
2016-12-08 10:54 ` [patch 3/8] FatPkg\EnhancedFatDxe: Make function prototype align with definition Dandan Bi
2016-12-09  1:13   ` Ni, Ruiyu
2016-12-08 10:54 ` [patch 4/8] FatPkg\EnhancedFatDxe: Make the variable name follow rule Dandan Bi
2016-12-09  1:12   ` Ni, Ruiyu
2016-12-08 10:54 ` [patch 5/8] FatPkg\EnhancedFatDxe: Use typedef for complex type Dandan Bi
2016-12-09  1:11   ` Ni, Ruiyu
2016-12-08 10:54 ` [patch 6/8] FatPkg\EnhancedFatDxe: Make the comments align with EDKII coding style Dandan Bi
2016-12-09  1:10   ` Ni, Ruiyu
2016-12-08 10:54 ` [patch 7/8] FatPkg\EnhancedFatDxe: Add comments for functions Dandan Bi
2016-12-09  1:10   ` Ni, Ruiyu
2016-12-08 10:54 ` [patch 8/8] FatPkg: Fix format issues in dec/inf/dsc files Dandan Bi
2016-12-09  1:09   ` Ni, Ruiyu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox