public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Carsey, Jaben" <jaben.carsey@intel.com>
To: "Zeng, Star" <star.zeng@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Ni, Ruiyu" <ruiyu.ni@intel.com>,
	"Zeng, Star" <star.zeng@intel.com>,
	"Carsey, Jaben" <jaben.carsey@intel.com>
Subject: Re: [PATCH] ShellPkg SmbiosView: Eliminate trailing " | " in PrintBitsInfo()
Date: Thu, 9 Feb 2017 17:00:15 +0000	[thread overview]
Message-ID: <CB6E33457884FA40993F35157061515C54B66C63@FMSMSX103.amr.corp.intel.com> (raw)
In-Reply-To: <1486632169-43240-1-git-send-email-star.zeng@intel.com>

Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>

> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
> Star Zeng
> Sent: Thursday, February 09, 2017 1:23 AM
> To: edk2-devel@lists.01.org
> Cc: Ni, Ruiyu <ruiyu.ni@intel.com>; Carsey, Jaben
> <jaben.carsey@intel.com>; Zeng, Star <star.zeng@intel.com>
> Subject: [edk2] [PATCH] ShellPkg SmbiosView: Eliminate trailing " | " in
> PrintBitsInfo()
> Importance: High
> 
> Current PrintBitsInfo() will always print an additional trailing
> " | " for the bit flags, for example,
> 
> Base Board Feature Flags: Hosting board |  Replaceable |
> 
> Th patch is to eliminate trailing " | " in PrintBitsInfo(), then
> the output will be like below
> 
> Base Board Feature Flags: Hosting board |  Replaceable
> 
> Cc: Ruiyu Ni <ruiyu.ni@intel.com>
> Cc: Jaben Carsey <jaben.carsey@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Star Zeng <star.zeng@intel.com>
> ---
>  .../UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 18
> +++++++++++++-----
>  1 file changed, 13 insertions(+), 5 deletions(-)
> 
> diff --git
> a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.
> c
> b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.
> c
> index 282ba584c8c9..02d9ab1f57b3 100644
> ---
> a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.
> c
> +++
> b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.
> c
> @@ -3449,19 +3449,24 @@ PrintBitsInfo (
> 
>    UINTN   Index;
>    UINT32  Value;
> -  BOOLEAN NoInfo;
> +  BOOLEAN FirstInfo;
> 
> -  NoInfo  = TRUE;
> +  FirstInfo = TRUE;
>    Value   = Bits;
>    //
>    // query the table and print information
>    //
>    for (Index = 0; Index < Number; Index++) {
>      if (BIT (Value, Table[Index].Key) != 0) {
> +      if (!FirstInfo) {
> +        //
> +        // If it is not first info, print the separator first.
> +        //
> +        Print (L" | ");
> +      }
>        Print (Table[Index].Info);
> -      Print (L" | ");
> 
> -      NoInfo = FALSE;
> +      FirstInfo = FALSE;
>        //
>        // clear the bit, for reserved bits test
>        //
> @@ -3469,7 +3474,10 @@ PrintBitsInfo (
>      }
>    }
> 
> -  if (NoInfo) {
> +  //
> +  // There is no any info if FirstInfo is still TRUE.
> +  //
> +  if (FirstInfo) {
>      ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN
> (STR_SMBIOSVIEW_QUERYTABLE_NO_INFO), gShellDebug1HiiHandle);
>    }
> 
> --
> 2.7.0.windows.1
> 
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel


      reply	other threads:[~2017-02-09 17:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-09  9:22 [PATCH] ShellPkg SmbiosView: Eliminate trailing " | " in PrintBitsInfo() Star Zeng
2017-02-09 17:00 ` Carsey, Jaben [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CB6E33457884FA40993F35157061515C54B66C63@FMSMSX103.amr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox