mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
HID: amd_sfh: Update HPD sensor structure elements
HPD sensor data is not populating properly because of wrong order of HPD
sensor structure elements. So update the order of structure elements to
match the HPD sensor data received from the firmware.
Fixes: 24a31ea949
("HID: amd_sfh: Add initial support for HPD sensor")
Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
This commit is contained in:
parent
333861f4cc
commit
bbf0dec306
@ -90,10 +90,10 @@ enum mem_use_type {
|
||||
struct hpd_status {
|
||||
union {
|
||||
struct {
|
||||
u32 human_presence_report : 4;
|
||||
u32 human_presence_actual : 4;
|
||||
u32 probablity : 8;
|
||||
u32 object_distance : 16;
|
||||
u32 probablity : 8;
|
||||
u32 human_presence_actual : 4;
|
||||
u32 human_presence_report : 4;
|
||||
} shpd;
|
||||
u32 val;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user