diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-28 21:21:35 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-28 21:21:35 +0000 |
| commit | 3f7acdfe6e033e478b72d591a8920e9a5dd9ce45 (patch) | |
| tree | 6afef0df0858e79310d282302b118f35a831c107 | |
| parent | 464aad140717552ce0693cd33f6d9e5d3653287e (diff) | |
Notes
| -rw-r--r-- | usr.sbin/pciconf/pciconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pciconf/pciconf.c b/usr.sbin/pciconf/pciconf.c index 22bb61dacaf1..33fe95db57f3 100644 --- a/usr.sbin/pciconf/pciconf.c +++ b/usr.sbin/pciconf/pciconf.c @@ -234,9 +234,9 @@ list_devs(const char *name, int verbose, int bars, int caps, int errors, for (p = conf; p < &conf[pc.num_matches]; p++) { printf("%s%d@pci%d:%d:%d:%d:\tclass=0x%06x card=0x%08x " "chip=0x%08x rev=0x%02x hdr=0x%02x\n", - (p->pd_name && *p->pd_name) ? p->pd_name : + *p->pd_name ? p->pd_name : "none", - (p->pd_name && *p->pd_name) ? (int)p->pd_unit : + *p->pd_name ? (int)p->pd_unit : none_count++, p->pc_sel.pc_domain, p->pc_sel.pc_bus, p->pc_sel.pc_dev, p->pc_sel.pc_func, (p->pc_class << 16) | |
