diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-02 11:08:29 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-23 19:40:07 +0100 |
commit | 24356dd5c1edc64eeea4f1f15806ffb53a86911f (patch) | |
tree | 62c902faa803dfbf9935e3613bc86e46d0d52dc8 /src/mainboard | |
parent | bd89699516a26f698b967167f72d6bf2d84280be (diff) | |
download | coreboot-24356dd5c1edc64eeea4f1f15806ffb53a86911f.tar.xz |
X201: Add missing CPU counter.
Change-Id: If9f10ef40193fc84ab1849429b5af678ffe831b2
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/4624
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/lenovo/x201/acpi_tables.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x201/acpi_tables.c b/src/mainboard/lenovo/x201/acpi_tables.c index 36939d7589..165de0d404 100644 --- a/src/mainboard/lenovo/x201/acpi_tables.c +++ b/src/mainboard/lenovo/x201/acpi_tables.c @@ -42,6 +42,7 @@ static void acpi_create_gnvs(global_nvs_t * gnvs) memset((void *)gnvs, 0, sizeof(*gnvs)); gnvs->apic = 1; gnvs->mpen = 1; /* Enable Multi Processing */ + gnvs->pcnt = dev_count_cpu(); /* IGD Displays */ gnvs->ndid = 3; |