diff mbox series

pciutils: change vpd keyword MN to text

Message ID OF11986481.9DE311D9-ON002581B1.005E606E-862581B1.005FAD2B@notes.na.collabserv.com
State Not Applicable
Headers show
Series pciutils: change vpd keyword MN to text | expand

Commit Message

John W Walthour Oct. 6, 2017, 5:25 p.m. UTC
The PCI spec defines all keyword data fields as ASCII unless otherwise 
noted.
The MN keyword is not otherwise noted. To make this field human readable 
in
lspci verbose outputs, this patch changes the MN keyword definition from
F_BINARY to F_TEXT.

Signed-off-by: John Walthour <return.0@me.com>
---
 ls-vpd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.11.0 (Apple Git-81)

Comments

Bjorn Helgaas Oct. 6, 2017, 6:17 p.m. UTC | #1
On Fri, Oct 06, 2017 at 12:25:03PM -0500, John W Walthour wrote:
> The PCI spec defines all keyword data fields as ASCII unless otherwise 
> noted.
> The MN keyword is not otherwise noted. To make this field human readable 
> in
> lspci verbose outputs, this patch changes the MN keyword definition from
> F_BINARY to F_TEXT.

I don't apply these (Martin, who's already cc'd) would do that, but
can you please reformat the changelog so it doesn't have the unusual
line breaks that make it hard to read?  I use a maximum text width of
75, which means it fits in 80 columns even when "git log" indents it
by 4 spaces.

> Signed-off-by: John Walthour <return.0@me.com>
> ---
>  ls-vpd.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/ls-vpd.c b/ls-vpd.c
> index 35c2bfa..b79abfc 100644
> --- a/ls-vpd.c
> +++ b/ls-vpd.c
> @@ -33,7 +33,7 @@ static const struct vpd_item {
>  } vpd_items[] = {
>    { 'C','P', F_BINARY, "Extended capability" },
>    { 'E','C', F_TEXT,   "Engineering changes" },
> -  { 'M','N', F_BINARY, "Manufacture ID" },
> +  { 'M','N', F_TEXT,   "Manufacture ID" },
>    { 'P','N', F_TEXT,   "Part number" },
>    { 'R','V', F_RESVD,  "Reserved" },
>    { 'R','W', F_RDWR,   "Read-write area" },
> --
> 2.11.0 (Apple Git-81)
> 
>
diff mbox series

Patch

diff --git a/ls-vpd.c b/ls-vpd.c
index 35c2bfa..b79abfc 100644
--- a/ls-vpd.c
+++ b/ls-vpd.c
@@ -33,7 +33,7 @@  static const struct vpd_item {
 } vpd_items[] = {
   { 'C','P', F_BINARY, "Extended capability" },
   { 'E','C', F_TEXT,   "Engineering changes" },
-  { 'M','N', F_BINARY, "Manufacture ID" },
+  { 'M','N', F_TEXT,   "Manufacture ID" },
   { 'P','N', F_TEXT,   "Part number" },
   { 'R','V', F_RESVD,  "Reserved" },
   { 'R','W', F_RDWR,   "Read-write area" },