mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-08 07:38:10 +00:00
drm/amdgpu: remove illegal instruction stub from si_dma.c
Was never used. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
8fe159b014
commit
2c498d1dbe
1 changed files with 0 additions and 14 deletions
|
@ -658,15 +658,6 @@ static int si_dma_process_trap_irq(struct amdgpu_device *adev,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int si_dma_process_illegal_inst_irq(struct amdgpu_device *adev,
|
|
||||||
struct amdgpu_irq_src *source,
|
|
||||||
struct amdgpu_iv_entry *entry)
|
|
||||||
{
|
|
||||||
DRM_ERROR("Illegal instruction in SDMA command stream\n");
|
|
||||||
schedule_work(&adev->reset_work);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int si_dma_set_clockgating_state(void *handle,
|
static int si_dma_set_clockgating_state(void *handle,
|
||||||
enum amd_clockgating_state state)
|
enum amd_clockgating_state state)
|
||||||
{
|
{
|
||||||
|
@ -781,15 +772,10 @@ static const struct amdgpu_irq_src_funcs si_dma_trap_irq_funcs = {
|
||||||
.process = si_dma_process_trap_irq,
|
.process = si_dma_process_trap_irq,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct amdgpu_irq_src_funcs si_dma_illegal_inst_irq_funcs = {
|
|
||||||
.process = si_dma_process_illegal_inst_irq,
|
|
||||||
};
|
|
||||||
|
|
||||||
static void si_dma_set_irq_funcs(struct amdgpu_device *adev)
|
static void si_dma_set_irq_funcs(struct amdgpu_device *adev)
|
||||||
{
|
{
|
||||||
adev->sdma.trap_irq.num_types = AMDGPU_SDMA_IRQ_LAST;
|
adev->sdma.trap_irq.num_types = AMDGPU_SDMA_IRQ_LAST;
|
||||||
adev->sdma.trap_irq.funcs = &si_dma_trap_irq_funcs;
|
adev->sdma.trap_irq.funcs = &si_dma_trap_irq_funcs;
|
||||||
adev->sdma.illegal_inst_irq.funcs = &si_dma_illegal_inst_irq_funcs;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue