]> git.baikalelectronics.ru Git - kernel.git/commitdiff
habanalabs: remove unused get_dma_desc_list_size
authorOded Gabbay <ogabbay@kernel.org>
Sat, 18 Jun 2022 18:27:07 +0000 (21:27 +0300)
committerOded Gabbay <ogabbay@kernel.org>
Tue, 12 Jul 2022 06:09:23 +0000 (09:09 +0300)
This asic callback function is not called anymore from the common code.
The asic-specific function itself is called but from within the
asic-specific code.

Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/misc/habanalabs/common/habanalabs.h
drivers/misc/habanalabs/gaudi/gaudi.c
drivers/misc/habanalabs/goya/goya.c

index 3a0f6dca8361441d072eac56d8d5fd2f08f7fe35..94893305b928749850c4742573485e1f8e5c867f 100644 (file)
@@ -1260,7 +1260,6 @@ struct fw_load_mgr {
  * @hl_dma_unmap_sgtable: DMA unmap scatter-gather table.
  * @cs_parser: parse Command Submission.
  * @asic_dma_map_sgtable: DMA map scatter-gather table.
- * @get_dma_desc_list_size: get number of LIN_DMA packets required for CB.
  * @add_end_of_cb_packets: Add packets to the end of CB, if device requires it.
  * @update_eq_ci: update event queue CI.
  * @context_switch: called upon ASID context switch.
@@ -1379,8 +1378,6 @@ struct hl_asic_funcs {
        int (*cs_parser)(struct hl_device *hdev, struct hl_cs_parser *parser);
        int (*asic_dma_map_sgtable)(struct hl_device *hdev, struct sg_table *sgt,
                                enum dma_data_direction dir);
-       u32 (*get_dma_desc_list_size)(struct hl_device *hdev,
-                                       struct sg_table *sgt);
        void (*add_end_of_cb_packets)(struct hl_device *hdev,
                                        void *kernel_address, u32 len,
                                        u64 cq_addr, u32 cq_val, u32 msix_num,
index 31e702846f7a63c5ccd23f8169706ba5fc12e737..1156ec7dacc12755e8b414002bc0b1c54ce5ee1d 100644 (file)
@@ -9315,7 +9315,6 @@ static const struct hl_asic_funcs gaudi_funcs = {
        .hl_dma_unmap_sgtable = hl_dma_unmap_sgtable,
        .cs_parser = gaudi_cs_parser,
        .asic_dma_map_sgtable = hl_dma_map_sgtable,
-       .get_dma_desc_list_size = gaudi_get_dma_desc_list_size,
        .add_end_of_cb_packets = gaudi_add_end_of_cb_packets,
        .update_eq_ci = gaudi_update_eq_ci,
        .context_switch = gaudi_context_switch,
index 4cde505a74167d57716361385e326ab2af461f2a..64590fc55dc9279e745f4d4ce5cd7a2529aefeac 100644 (file)
@@ -5461,7 +5461,6 @@ static const struct hl_asic_funcs goya_funcs = {
        .hl_dma_unmap_sgtable = hl_dma_unmap_sgtable,
        .cs_parser = goya_cs_parser,
        .asic_dma_map_sgtable = hl_dma_map_sgtable,
-       .get_dma_desc_list_size = goya_get_dma_desc_list_size,
        .add_end_of_cb_packets = goya_add_end_of_cb_packets,
        .update_eq_ci = goya_update_eq_ci,
        .context_switch = goya_context_switch,