summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/si_smc.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2014-11-10 07:51:08 +0100
committerAlex Deucher <alexander.deucher@amd.com>2014-11-12 17:56:46 +0100
commitc81b99423bd9d3fc35ac8752ca5fb4c50eab063c (patch)
treef7266faf8ca3eb44780d942e33a8af81c6ce1046 /drivers/gpu/drm/radeon/si_smc.c
parentdrm/radeon: set power control in ci dpm enable (diff)
downloadlinux-c81b99423bd9d3fc35ac8752ca5fb4c50eab063c.tar.xz
linux-c81b99423bd9d3fc35ac8752ca5fb4c50eab063c.zip
drm/radeon/si/ci: make u8 static arrays constant
These two arrays don't change, just make them constant, reduces data segment by a few bytes. Signed-off-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/si_smc.c')
-rw-r--r--drivers/gpu/drm/radeon/si_smc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/si_smc.c b/drivers/gpu/drm/radeon/si_smc.c
index 73dbc79c959d..e5bb92f16775 100644
--- a/drivers/gpu/drm/radeon/si_smc.c
+++ b/drivers/gpu/drm/radeon/si_smc.c
@@ -135,7 +135,7 @@ void si_reset_smc(struct radeon_device *rdev)
int si_program_jump_on_start(struct radeon_device *rdev)
{
- static u8 data[] = { 0x0E, 0x00, 0x40, 0x40 };
+ static const u8 data[] = { 0x0E, 0x00, 0x40, 0x40 };
return si_copy_bytes_to_smc(rdev, 0x0, data, 4, sizeof(data)+1);
}