aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYejune Deng <[email protected]>2020-11-03 09:48:02 +0800
committerSteven Price <[email protected]>2020-11-04 11:54:03 +0000
commit0d32c2a72ca8d66378a7ec797ec3bf0a60ef5dcf (patch)
tree47d8f105b830bf3c8e91628d6ce7ee8db4c52e21
parentc44dfe4de053914cae61ed0a36421b3017f428bd (diff)
drm/panfrost: Replace devm_reset_control_array_get()
devm_reset_control_array_get_optional_exclusive() looks more readable Signed-off-by: Yejune Deng <[email protected]> Reviewed-by: Steven Price <[email protected]> Signed-off-by: Steven Price <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r--drivers/gpu/drm/panfrost/panfrost_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/panfrost/panfrost_device.c b/drivers/gpu/drm/panfrost/panfrost_device.c
index ea8d31863c50..1daf9322954a 100644
--- a/drivers/gpu/drm/panfrost/panfrost_device.c
+++ b/drivers/gpu/drm/panfrost/panfrost_device.c
@@ -18,7 +18,7 @@
static int panfrost_reset_init(struct panfrost_device *pfdev)
{
- pfdev->rstc = devm_reset_control_array_get(pfdev->dev, false, true);
+ pfdev->rstc = devm_reset_control_array_get_optional_exclusive(pfdev->dev);
if (IS_ERR(pfdev->rstc)) {
dev_err(pfdev->dev, "get reset failed %ld\n", PTR_ERR(pfdev->rstc));
return PTR_ERR(pfdev->rstc);