diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-08-30 01:10:14 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-08-30 01:10:14 +0000 |
commit | d704a5e63ee352287b038f383e423111104c76d2 (patch) | |
tree | aef379ac678cc133f438b4fdb17a1d4a7366df23 /sys/dev/pci/km.c | |
parent | 80e47d36a7237005bf4576409cfc3ad4cb3d0ad7 (diff) |
Mention Family 11h in the comment.
Diffstat (limited to 'sys/dev/pci/km.c')
-rw-r--r-- | sys/dev/pci/km.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/km.c b/sys/dev/pci/km.c index 43662aaa845..998b5f6975a 100644 --- a/sys/dev/pci/km.c +++ b/sys/dev/pci/km.c @@ -1,4 +1,4 @@ -/* $OpenBSD: km.c,v 1.2 2008/08/29 03:38:31 cnst Exp $ */ +/* $OpenBSD: km.c,v 1.3 2008/08/30 01:10:13 brad Exp $ */ /* * Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru> @@ -29,7 +29,7 @@ /* - * AMD Family 10h Processors, Function 3 -- Miscellaneous Control + * AMD Family 10h/11h Processors, Function 3 -- Miscellaneous Control */ /* Function 3 Registers */ @@ -68,8 +68,8 @@ struct cfdriver km_cd = { }; static const struct pci_matchid km_devices[] = { - { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_10_MISC}, - { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_11_MISC} + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_10_MISC }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_11_MISC } }; |