mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 21:20:51 +07:00
Input: synaptics-rmi4 - fix endianness issue in SMBus transport
The mapping table holds address in LE form, so we should convert it to CPU when comparing it. Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
8cf0adf2f8
commit
2593cd1189
@ -89,17 +89,17 @@ static int rmi_smb_get_command_code(struct rmi_transport_dev *xport,
|
||||
|
||||
mutex_lock(&rmi_smb->mappingtable_mutex);
|
||||
for (i = 0; i < RMI_SMB2_MAP_SIZE; i++) {
|
||||
if (rmi_smb->mapping_table[i].rmiaddr == rmiaddr) {
|
||||
struct mapping_table_entry *entry = &rmi_smb->mapping_table[i];
|
||||
|
||||
if (le16_to_cpu(entry->rmiaddr) == rmiaddr) {
|
||||
if (isread) {
|
||||
if (rmi_smb->mapping_table[i].readcount
|
||||
== bytecount) {
|
||||
if (entry->readcount == bytecount) {
|
||||
*commandcode = i;
|
||||
retval = 0;
|
||||
goto exit;
|
||||
}
|
||||
} else {
|
||||
if (rmi_smb->mapping_table[i].flags &
|
||||
RMI_SMB2_MAP_FLAGS_WE) {
|
||||
if (entry->flags & RMI_SMB2_MAP_FLAGS_WE) {
|
||||
*commandcode = i;
|
||||
retval = 0;
|
||||
goto exit;
|
||||
|
Loading…
Reference in New Issue
Block a user