diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-07-17 23:25:16 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-07-17 23:25:16 +0000 |
commit | 259f9dca6de19f3bdae8bf1a49eca46be8cb23dc (patch) | |
tree | 518d7d28b7580543277feae948eb8c7bdeedbb64 /sys/dev/pci | |
parent | 00517049c3b1f8d8f5f760dfd5bf0a2decfb3107 (diff) |
Add missing '};' to end struct declaration. Compiles again.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_ste.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ste.c b/sys/dev/pci/if_ste.c index 026a9bbf653..273804c90d9 100644 --- a/sys/dev/pci/if_ste.c +++ b/sys/dev/pci/if_ste.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ste.c,v 1.39 2007/07/17 17:15:34 jasper Exp $ */ +/* $OpenBSD: if_ste.c,v 1.40 2007/07/17 23:25:15 krw Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. @@ -825,6 +825,7 @@ const struct pci_matchid ste_devices[] = { { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_ST201_1 }, { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_ST201_2 }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_550TX } +}; /* * Probe for a Sundance ST201 chip. Check the PCI vendor and device |