From: Timur Tabi <timur@codeaurora.org>
To: linux-arm-kernel@lists.infradead.org,
linux-serial@vger.kernel.org, Greg Kroah-Hartman <greg@kroah.com>,
cov@mykolab.com, manoj.iyer@canonical.com
Subject: [PATCH] tty: acpi/spcr: QDF2400 E44 checks for wrong OEM revision
Date: Mon, 27 Feb 2017 21:24:36 -0600 [thread overview]
Message-ID: <1488252276-2425-1-git-send-email-timur@codeaurora.org> (raw)
For Qualcomm Technologies QDF2400 SOCs that are affected by
erratum E44, the ACPI oem_revision field is actually set to 1,
not 0.
Signed-off-by: Timur Tabi <timur@codeaurora.org>
---
drivers/acpi/spcr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/acpi/spcr.c b/drivers/acpi/spcr.c
index 2b5d0fa..2051a8c 100644
--- a/drivers/acpi/spcr.c
+++ b/drivers/acpi/spcr.c
@@ -30,7 +30,7 @@ static bool qdf2400_erratum_44_present(struct acpi_table_header *h)
return true;
if (!memcmp(h->oem_table_id, "QDF2400 ", ACPI_OEM_TABLE_ID_SIZE) &&
- h->oem_revision == 0)
+ h->oem_revision == 1)
return true;
return false;
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm
Technologies, Inc. Qualcomm Technologies, Inc. is a member of the
Code Aurora Forum, a Linux Foundation Collaborative Project.
next reply other threads:[~2017-02-28 3:24 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-28 3:24 Timur Tabi [this message]
2017-02-28 4:02 ` [PATCH] tty: acpi/spcr: QDF2400 E44 checks for wrong OEM revision Christopher Covington
2017-02-28 4:11 ` Timur Tabi
2017-02-28 20:19 ` dann frazier
2017-02-28 20:23 ` Timur Tabi
2017-02-28 20:25 ` dann frazier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1488252276-2425-1-git-send-email-timur@codeaurora.org \
--to=timur@codeaurora.org \
--cc=cov@mykolab.com \
--cc=greg@kroah.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-serial@vger.kernel.org \
--cc=manoj.iyer@canonical.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).