Remove last queue(3) *_END() usage from tree
authorkn <kn@openbsd.org>
Sun, 27 Nov 2022 22:55:31 +0000 (22:55 +0000)
committerkn <kn@openbsd.org>
Sun, 27 Nov 2022 22:55:31 +0000 (22:55 +0000)
queue(3) NOTES says they're deprecated and expand to NULL;  indeed.

No object change.
OK kettenis mvs

sys/dev/pci/pci.c

index 5f214d4..02cc9e2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pci.c,v 1.125 2022/06/17 10:08:36 kettenis Exp $      */
+/*     $OpenBSD: pci.c,v 1.126 2022/11/27 22:55:31 kn Exp $    */
 /*     $NetBSD: pci.c,v 1.31 1997/06/06 23:48:04 thorpej Exp $ */
 
 /*
@@ -1293,7 +1293,7 @@ pciioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
                    func == sel->pc_func)
                        break;
        }
-       if (pd == LIST_END(&pci->sc_devs))
+       if (pd == NULL)
                return ENXIO;
 
        tag = pci_make_tag(pc, sel->pc_bus, sel->pc_dev, sel->pc_func);