diff options
author | Furquan Shaikh <furquan@google.com> | 2020-04-24 21:53:42 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2020-04-28 19:50:17 +0000 |
commit | ec3dafd97ccdc4cd4b08476724f3f53a47fbdb7a (patch) | |
tree | 5a23d76a8217b042fe4988ca69a88e488ace91b6 /src/soc/intel | |
parent | 3b54fdf282797ca2950341cdba32bb6f451ef53d (diff) |
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')
-rw-r--r-- | src/soc/intel/common/block/graphics/graphics.c | 2 | ||||
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/graphics.h | 2 | ||||
-rw-r--r-- | src/soc/intel/skylake/graphics.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c index 55c181b0bd..a6d45c66e1 100644 --- a/src/soc/intel/common/block/graphics/graphics.c +++ b/src/soc/intel/common/block/graphics/graphics.c @@ -34,7 +34,7 @@ __weak void graphics_soc_init(struct device *dev) } __weak const struct i915_gpu_controller_info * -intel_igd_get_controller_info(struct device *device) +intel_igd_get_controller_info(const struct device *device) { return NULL; } diff --git a/src/soc/intel/common/block/include/intelblocks/graphics.h b/src/soc/intel/common/block/include/intelblocks/graphics.h index 4187ca10cc..378fdd0567 100644 --- a/src/soc/intel/common/block/include/intelblocks/graphics.h +++ b/src/soc/intel/common/block/include/intelblocks/graphics.h @@ -35,7 +35,7 @@ uintptr_t graphics_soc_write_acpi_opregion(const struct device *device, /* i915 controller info for ACPI backlight controls */ const struct i915_gpu_controller_info * -intel_igd_get_controller_info(struct device *device); +intel_igd_get_controller_info(const struct device *device); /* Graphics MMIO register read/write APIs */ uint32_t graphics_gtt_read(unsigned long reg); 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; |