X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ls-vpd.c;h=fcb80ae030eabdc2d61378103349908cc58f4f0e;hb=7ec58f1c9dc011f334863e07917e349d95748d51;hp=37217f0e06cae49cb957642d1b3ba732b643d259;hpb=d9b702cde8550b245defa130f3d93a5b34ae68d7;p=pciutils.git diff --git a/ls-vpd.c b/ls-vpd.c index 37217f0..fcb80ae 100644 --- a/ls-vpd.c +++ b/ls-vpd.c @@ -6,10 +6,13 @@ * Written by Ben Hutchings * Improved by Martin Mares * - * Can be freely distributed and used under the terms of the GNU GPL. + * Can be freely distributed and used under the terms of the GNU GPL v2+. + * + * SPDX-License-Identifier: GPL-2.0-or-later */ #include +#include #include "lspci.h" @@ -156,13 +159,14 @@ cap_vpd(struct device *d) { word read_len; const struct vpd_item *item; - byte id1, id2; + byte id[2], id1, id2; if (!read_vpd(d, res_addr + part_pos, buf, 3, &csum)) break; part_pos += 3; - id1 = buf[0]; - id2 = buf[1]; + memcpy(id, buf, 2); + id1 = id[0]; + id2 = id[1]; part_len = buf[2]; if (part_len > res_len - part_pos) break; @@ -178,7 +182,9 @@ cap_vpd(struct device *d) if (!read_vpd(d, res_addr + part_pos, buf, read_len, &csum)) break; - printf("\t\t\t[%c%c] %s: ", id1, id2, item->name); + printf("\t\t\t["); + print_vpd_string(id, 2); + printf("] %s: ", item->name); switch (item->format) {