drm/msm/adreno: clean up component ops indentation

Clean up the component ops initialisers which were indented one level
too far.

Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Patchwork: https://patchwork.freedesktop.org/patch/524973/
Link: https://lore.kernel.org/r/20230303164807.13124-5-johan+linaro@kernel.org
Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
Johan Hovold 2023-03-03 17:48:07 +01:00 committed by Rob Clark
parent db7662d076
commit eaa667db35
1 changed files with 2 additions and 2 deletions

View File

@ -575,8 +575,8 @@ static void adreno_unbind(struct device *dev, struct device *master,
}
static const struct component_ops a3xx_ops = {
.bind = adreno_bind,
.unbind = adreno_unbind,
.bind = adreno_bind,
.unbind = adreno_unbind,
};
static void adreno_device_register_headless(void)