summaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/graphics.c
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-04-24 21:53:42 -0700
committerFurquan Shaikh <furquan@google.com>2020-04-28 19:50:17 +0000
commitec3dafd97ccdc4cd4b08476724f3f53a47fbdb7a (patch)
tree5a23d76a8217b042fe4988ca69a88e488ace91b6 /src/soc/intel/skylake/graphics.c
parent3b54fdf282797ca2950341cdba32bb6f451ef53d (diff)
downloadcoreboot-ec3dafd97ccdc4cd4b08476724f3f53a47fbdb7a.tar.xz
soc/intel: Constify struct device * parameter to intel_igd_get_controller_info
intel_igd_get_controller_info() does not need to modify the device structure. Hence, this change makes the struct device * parameter to intel_igd_get_controller_info() as const. Change-Id: Ic044a80e3e2c45af6824a23f3cd0b08b94c0f279 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40709 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/skylake/graphics.c')
-rw-r--r--src/soc/intel/skylake/graphics.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/skylake/graphics.c b/src/soc/intel/skylake/graphics.c
index 5be398c717..e1f8fbd3c4 100644
--- a/src/soc/intel/skylake/graphics.c
+++ b/src/soc/intel/skylake/graphics.c
@@ -177,7 +177,7 @@ uintptr_t graphics_soc_write_acpi_opregion(const struct device *device,
}
const struct i915_gpu_controller_info *
-intel_igd_get_controller_info(struct device *device)
+intel_igd_get_controller_info(const struct device *device)
{
struct soc_intel_skylake_config *chip = device->chip_info;
return &chip->gfx;