PCI vendor/device/subvendor/subdevice IDs are all uint16_t.
If we pass PCI_ANY_ID to a properly typed function we get a warning
given -1U is an unsigned int and that is a different constant value
than uint16_t -1. Add the cast to avoid this problem.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days