diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-11-15 18:42:48 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-11-16 19:11:57 +0100 |
commit | dab15e24916695608a0ddd3ea260e1acd2bb7b07 (patch) | |
tree | edbab3ebaef8e5e19333805346c82424598dcfd4 /src/include/device | |
parent | 4ae054068a91ba13c05c39f01d4a43a28146949d (diff) | |
download | coreboot-dab15e24916695608a0ddd3ea260e1acd2bb7b07.tar.xz |
include/device/pci_ids.h: Correct Entertainment sub-class
According to PCI LOCAL BUS SPECIFICATION, REV. 3.0 page 305,
the sub-class for Entertainment en/decryption is 0x1010
Change-Id: Ia069e2ec328a8180fc1e2e70146c3710e703ee59
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/17436
Tested-by: build bot (Jenkins)
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/pci_ids.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 94955fc9a2..467b2a253e 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -109,7 +109,7 @@ #define PCI_BASE_CLASS_CRYPT 0x10 #define PCI_CLASS_CRYPT_NETWORK 0x1000 -#define PCI_CLASS_CRYPT_ENTERTAINMENT 0x1001 +#define PCI_CLASS_CRYPT_ENTERTAINMENT 0x1010 #define PCI_CLASS_CRYPT_OTHER 0x1080 #define PCI_BASE_CLASS_SIGNAL_PROCESSING 0x11 |