mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 00:42:56 -04:00
greybus: svc: Fix endian of hotplug request data
data of hotplug request should exchange to native CPU format before assignment. Signed-off-by: Phong Tran <tranmanphong@gmail.com> Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d67a39ab38
commit
ea15a40b32
@@ -131,10 +131,10 @@ static int gb_svc_intf_hotplug_recv(struct gb_operation *op)
|
||||
* XXX have the SVC get acknowledgement before we proceed.
|
||||
* */
|
||||
intf_id = hotplug->intf_id;
|
||||
unipro_mfg_id = hotplug->data.unipro_mfg_id;
|
||||
unipro_prod_id = hotplug->data.unipro_prod_id;
|
||||
ara_vend_id = hotplug->data.ara_vend_id;
|
||||
ara_prod_id = hotplug->data.ara_prod_id;
|
||||
unipro_mfg_id = le32_to_cpu(hotplug->data.unipro_mfg_id);
|
||||
unipro_prod_id = le32_to_cpu(hotplug->data.unipro_prod_id);
|
||||
ara_vend_id = le32_to_cpu(hotplug->data.ara_vend_id);
|
||||
ara_prod_id = le32_to_cpu(hotplug->data.ara_prod_id);
|
||||
|
||||
/* FIXME Set up the interface here; may required firmware download */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user