Commit fe9a52c9 authored by Oded Gabbay's avatar Oded Gabbay

habanalabs: replace __le32_to_cpu with le32_to_cpu

In some files the driver uses __le32_to_cpu while in other it uses
le32_to_cpu. Replace all __le32_to_cpu instances with le32_to_cpu for
consistency.
Signed-off-by: default avatarOded Gabbay <oded.gabbay@gmail.com>
parent abca3a82
...@@ -65,7 +65,7 @@ static int hw_ip_info(struct hl_device *hdev, struct hl_info_args *args) ...@@ -65,7 +65,7 @@ static int hw_ip_info(struct hl_device *hdev, struct hl_info_args *args)
hw_ip.num_of_events = prop->num_of_events; hw_ip.num_of_events = prop->num_of_events;
memcpy(hw_ip.armcp_version, memcpy(hw_ip.armcp_version,
prop->armcp_info.armcp_version, VERSION_MAX_LEN); prop->armcp_info.armcp_version, VERSION_MAX_LEN);
hw_ip.armcp_cpld_version = __le32_to_cpu(prop->armcp_info.cpld_version); hw_ip.armcp_cpld_version = le32_to_cpu(prop->armcp_info.cpld_version);
hw_ip.psoc_pci_pll_nr = prop->psoc_pci_pll_nr; hw_ip.psoc_pci_pll_nr = prop->psoc_pci_pll_nr;
hw_ip.psoc_pci_pll_nf = prop->psoc_pci_pll_nf; hw_ip.psoc_pci_pll_nf = prop->psoc_pci_pll_nf;
hw_ip.psoc_pci_pll_od = prop->psoc_pci_pll_od; hw_ip.psoc_pci_pll_od = prop->psoc_pci_pll_od;
......
...@@ -267,7 +267,7 @@ static void ext_hw_queue_schedule_job(struct hl_cs_job *job) ...@@ -267,7 +267,7 @@ static void ext_hw_queue_schedule_job(struct hl_cs_job *job)
hdev->asic_funcs->add_end_of_cb_packets(hdev, cb->kernel_address, len, hdev->asic_funcs->add_end_of_cb_packets(hdev, cb->kernel_address, len,
cq_addr, cq_addr,
__le32_to_cpu(cq_pkt.data), le32_to_cpu(cq_pkt.data),
q->hw_queue_id); q->hw_queue_id);
q->shadow_queue[hl_pi_2_offset(q->pi)] = job; q->shadow_queue[hl_pi_2_offset(q->pi)] = job;
......
...@@ -26,7 +26,7 @@ int hl_build_hwmon_channel_info(struct hl_device *hdev, ...@@ -26,7 +26,7 @@ int hl_build_hwmon_channel_info(struct hl_device *hdev,
int rc, i, j; int rc, i, j;
for (i = 0 ; i < ARMCP_MAX_SENSORS ; i++) { for (i = 0 ; i < ARMCP_MAX_SENSORS ; i++) {
type = __le32_to_cpu(sensors_arr[i].type); type = le32_to_cpu(sensors_arr[i].type);
if ((type == 0) && (sensors_arr[i].flags == 0)) if ((type == 0) && (sensors_arr[i].flags == 0))
break; break;
...@@ -58,10 +58,10 @@ int hl_build_hwmon_channel_info(struct hl_device *hdev, ...@@ -58,10 +58,10 @@ int hl_build_hwmon_channel_info(struct hl_device *hdev,
} }
for (i = 0 ; i < arr_size ; i++) { for (i = 0 ; i < arr_size ; i++) {
type = __le32_to_cpu(sensors_arr[i].type); type = le32_to_cpu(sensors_arr[i].type);
curr_arr = sensors_by_type[type]; curr_arr = sensors_by_type[type];
curr_arr[sensors_by_type_next_index[type]++] = curr_arr[sensors_by_type_next_index[type]++] =
__le32_to_cpu(sensors_arr[i].flags); le32_to_cpu(sensors_arr[i].flags);
} }
channels_info = kcalloc(num_active_sensor_types + 1, channels_info = kcalloc(num_active_sensor_types + 1,
......
...@@ -160,7 +160,7 @@ irqreturn_t hl_irq_handler_eq(int irq, void *arg) ...@@ -160,7 +160,7 @@ irqreturn_t hl_irq_handler_eq(int irq, void *arg)
while (1) { while (1) {
bool entry_ready = bool entry_ready =
((__le32_to_cpu(eq_base[eq->ci].hdr.ctl) & ((le32_to_cpu(eq_base[eq->ci].hdr.ctl) &
EQ_CTL_READY_MASK) >> EQ_CTL_READY_SHIFT); EQ_CTL_READY_MASK) >> EQ_CTL_READY_SHIFT);
if (!entry_ready) if (!entry_ready)
...@@ -194,7 +194,7 @@ irqreturn_t hl_irq_handler_eq(int irq, void *arg) ...@@ -194,7 +194,7 @@ irqreturn_t hl_irq_handler_eq(int irq, void *arg)
skip_irq: skip_irq:
/* Clear EQ entry ready bit */ /* Clear EQ entry ready bit */
eq_entry->hdr.ctl = eq_entry->hdr.ctl =
cpu_to_le32(__le32_to_cpu(eq_entry->hdr.ctl) & cpu_to_le32(le32_to_cpu(eq_entry->hdr.ctl) &
~EQ_CTL_READY_MASK); ~EQ_CTL_READY_MASK);
eq->ci = hl_eq_inc_ptr(eq->ci); eq->ci = hl_eq_inc_ptr(eq->ci);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment