Home
last modified time | relevance | path

Searched full:gpu_cx (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/gpu/drm/msm/
H A Dmsm_gpu.c38 if (gpu->gpu_cx) { in enable_pwrrail()
39 ret = regulator_enable(gpu->gpu_cx); in enable_pwrrail()
41 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_cx': %d\n", ret); in enable_pwrrail()
51 if (gpu->gpu_cx) in disable_pwrrail()
52 regulator_disable(gpu->gpu_cx); in disable_pwrrail()
1055 gpu->gpu_cx = devm_regulator_get(&pdev->dev, "vddcx"); in msm_gpu_init()
1056 DBG("gpu_cx: %p", gpu->gpu_cx); in msm_gpu_init()
1057 if (IS_ERR(gpu->gpu_cx)) in msm_gpu_init()
1058 gpu->gpu_cx = NULL; in msm_gpu_init()
H A Dmsm_gpu.h243 struct regulator *gpu_reg, *gpu_cx; member