diff options
author | Corentin Chary <corentincj@iksaif.net> | 2011-07-01 09:34:30 (GMT) |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-08-05 18:45:52 (GMT) |
commit | 57d5c8e742dbb8cdc794d9e0fee769c9533072af (patch) | |
tree | 6e782cf6a96c22bb58ff14f95f0877f6185b831b /drivers/platform | |
parent | 39bbde059973d3337ae5f2fae5097d52599415e4 (diff) | |
download | linux-fsl-qoriq-57d5c8e742dbb8cdc794d9e0fee769c9533072af.tar.xz |
asus-wmi: second part of the version starts at 16 not 8
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/asus-wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c index 0fce7de..fa2b395 100644 --- a/drivers/platform/x86/asus-wmi.c +++ b/drivers/platform/x86/asus-wmi.c @@ -1246,7 +1246,7 @@ static int asus_wmi_platform_init(struct asus_wmi *asus) /* We don't know yet what to do with this version... */ if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SPEC, 0, 0x9, &rv)) { - pr_info("BIOS WMI version: %d.%d", rv >> 8, rv & 0xFF); + pr_info("BIOS WMI version: %d.%d", rv >> 16, rv & 0xFF); asus->spec = rv; } |