From 76819b407f96ae93d21365982eca94ce5ca85526 Mon Sep 17 00:00:00 2001 From: imp Date: Wed, 14 Apr 2004 02:20:01 +0000 Subject: Prefer uint16_t to ushort. Submitted by: bde --- sys/dev/sx/sx_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sx/sx_pci.c b/sys/dev/sx/sx_pci.c index 35abb55..70be4c4 100644 --- a/sys/dev/sx/sx_pci.c +++ b/sys/dev/sx/sx_pci.c @@ -52,7 +52,7 @@ sx_pci_probe( switch (pci_get_devid(dev)) { case 0x200011cb: - if (pci_get_subdevice(dev) == (ushort)0xb008) { + if (pci_get_subdevice(dev) == (uint16_t)0xb008) { desc = "Specialix I/O8+ Multiport Serial Card"; } break; -- cgit v1.1