summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2004-04-14 02:20:01 +0000
committerimp <imp@FreeBSD.org>2004-04-14 02:20:01 +0000
commit76819b407f96ae93d21365982eca94ce5ca85526 (patch)
treecf38cba09ccf1e0aaf8340bf99e171a2c233955f
parentfcb88d01946011442db8c092887de669ea1e3762 (diff)
downloadFreeBSD-src-76819b407f96ae93d21365982eca94ce5ca85526.zip
FreeBSD-src-76819b407f96ae93d21365982eca94ce5ca85526.tar.gz
Prefer uint16_t to ushort.
Submitted by: bde
-rw-r--r--sys/dev/sx/sx_pci.c2
1 files changed, 1 insertions, 1 deletions
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;
OpenPOWER on IntegriCloud