Skip to content

Commit

Permalink
[CPUFREQ] Fix _OSC UUID in pcc-cpufreq
Browse files Browse the repository at this point in the history
UUID needs to be written out the way it is described in
Sec 18.5.124 of ACPI 4.0a Specification.

Platform firmware's use of this UUID/_OSC is optional, which is
why we didn't notice this bug earlier.

Signed-off-by: Naga Chumbalkar <nagananda.chumbalkar@hp.com>
Signed-off-by: Dave Jones <davej@redhat.com>
Cc: stable@kernel.org
  • Loading branch information
Naga Chumbalkar authored and Dave Jones committed May 4, 2011
1 parent 5dd12af commit 904cc1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/cpu/cpufreq/pcc-cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

#include <acpi/processor.h>

#define PCC_VERSION "1.00.00"
#define PCC_VERSION "1.10.00"
#define POLL_LOOPS 300

#define CMD_COMPLETE 0x1
Expand Down Expand Up @@ -102,7 +102,7 @@ static struct acpi_generic_address doorbell;
static u64 doorbell_preserve;
static u64 doorbell_write;

static u8 OSC_UUID[16] = {0x63, 0x9B, 0x2C, 0x9F, 0x70, 0x91, 0x49, 0x1f,
static u8 OSC_UUID[16] = {0x9F, 0x2C, 0x9B, 0x63, 0x91, 0x70, 0x1f, 0x49,
0xBB, 0x4F, 0xA5, 0x98, 0x2F, 0xA1, 0xB5, 0x46};

struct pcc_cpu {
Expand Down

0 comments on commit 904cc1e

Please sign in to comment.