mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 01:52:13 +00:00
IB/usnic: Fix incorrect cast in usnic_ib_fw_string_to_u64
Signed-off-by: Christian Benvenuti <benve@cisco.com> Signed-off-by: Nelson Escobar <neescoba@cisco.com> Reviewed-by: Dave Goodell <dgoodell@cisco.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
1e67a64e9c
commit
3ea7286139
@ -51,7 +51,7 @@
|
|||||||
|
|
||||||
static void usnic_ib_fw_string_to_u64(char *fw_ver_str, u64 *fw_ver)
|
static void usnic_ib_fw_string_to_u64(char *fw_ver_str, u64 *fw_ver)
|
||||||
{
|
{
|
||||||
*fw_ver = (u64) *fw_ver_str;
|
*fw_ver = *((u64 *)fw_ver_str);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int usnic_ib_fill_create_qp_resp(struct usnic_ib_qp_grp *qp_grp,
|
static int usnic_ib_fill_create_qp_resp(struct usnic_ib_qp_grp *qp_grp,
|
||||||
|
Loading…
Reference in New Issue
Block a user