drm/i915: move tons of power well initializers to rodata
authorJani Nikula <jani.nikula@intel.com>
Fri, 29 Apr 2022 14:21:40 +0000 (17:21 +0300)
committerJani Nikula <jani.nikula@intel.com>
Mon, 2 May 2022 08:37:10 +0000 (11:37 +0300)
commitc140915c00c92e3ca2a4f8e5748f0b9ef3e5a418
tree978b47ef082221d3c612b6eafac8b639deddda0e
parent119125d96b8bb31d95345738e4827998115d70c9
drm/i915: move tons of power well initializers to rodata

Using compound literals for initialization can be tricky. Lacking a
const qualifier, they won't end up in rodata, which is probably not
expected or intended. Add const to move a whopping 136 initializers to
rodata.

Compare:

$ objdump --syms drivers/gpu/drm/i915/display/intel_display_power_map.o | grep "\.rodata.*__compound_literal"
$ objdump --syms drivers/gpu/drm/i915/display/intel_display_power_map.o | grep "\.data.*__compound_literal"

Before and after the change.

Fixes: c32ffce42aa5 ("drm/i915: Convert the power well descriptor domain mask to an array of domains")
Fixes: 4a845ff0c0d4 ("drm/i915: Simplify power well definitions by adding power well instances")
Cc: Imre Deak <imre.deak@intel.com>
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220429142140.2671828-1-jani.nikula@intel.com
drivers/gpu/drm/i915/display/intel_display_power_map.c