mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-10 06:56:14 -05:00
drm/msm: Use generic name for gpu resources
Use generic name for resources like irq and kthread instead of hardware specific name to make it easier to grep. Signed-off-by: Akhil P Oommen <quic_akhilpo@quicinc.com> Link: https://lore.kernel.org/r/20220226005021.v2.1.Id3d2e7391192c86d0783aeb307d3f9fb61f9efee@changeid Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
committed by
Rob Clark
parent
9e4dde28e9
commit
0737ab95a0
@@ -844,7 +844,7 @@ int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
|
||||
gpu->funcs = funcs;
|
||||
gpu->name = name;
|
||||
|
||||
gpu->worker = kthread_create_worker(0, "%s-worker", gpu->name);
|
||||
gpu->worker = kthread_create_worker(0, "gpu-worker");
|
||||
if (IS_ERR(gpu->worker)) {
|
||||
ret = PTR_ERR(gpu->worker);
|
||||
gpu->worker = NULL;
|
||||
@@ -882,7 +882,7 @@ int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
|
||||
}
|
||||
|
||||
ret = devm_request_irq(&pdev->dev, gpu->irq, irq_handler,
|
||||
IRQF_TRIGGER_HIGH, gpu->name, gpu);
|
||||
IRQF_TRIGGER_HIGH, "gpu-irq", gpu);
|
||||
if (ret) {
|
||||
DRM_DEV_ERROR(drm->dev, "failed to request IRQ%u: %d\n", gpu->irq, ret);
|
||||
goto fail;
|
||||
|
||||
Reference in New Issue
Block a user