drm/i915: avoid unused scale_user_to_hw() warning
authorArnd Bergmann <arnd@arndb.de>
Tue, 28 Apr 2020 21:30:50 +0000 (23:30 +0200)
committerChris Wilson <chris@chris-wilson.co.uk>
Fri, 15 May 2020 20:34:51 +0000 (21:34 +0100)
commit794bdcf71f47b98f6e003190069d5064123067ed
treebecbe3dab6c60627c85070bbe99237f50eb4d369
parent963f328b9cea33886cc4cd7a833bcd0f66074d31
drm/i915: avoid unused scale_user_to_hw() warning

After the function is no longer marked 'inline', there
is now a new warning pointing out that the only caller
is inside of an #ifdef:

drivers/gpu/drm/i915/display/intel_panel.c:493:12: warning: 'scale_user_to_hw' defined but not used [-Wunused-function]
  493 | static u32 scale_user_to_hw(struct intel_connector *connector,
      |            ^~~~~~~~~~~~~~~~

Move the function itself into that #ifdef as well.

Fixes: 81b55ef1f47b ("drm/i915: drop a bunch of superfluous inlines")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20200428213106.3139170-1-arnd@arndb.de
drivers/gpu/drm/i915/display/intel_panel.c