diff options
author | GuoHua Chen <chenguohua_716@163.com> | 2024-01-11 11:36:54 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-01-18 23:39:40 +0300 |
commit | cc588e799549a4521eaea1276099b29b1c06e2c0 (patch) | |
tree | a59ff01e421774df98ea062c3330ca78adbc2202 /drivers/gpu/drm/radeon | |
parent | f115624347781b9ecb7ac25c0b3ff168d1de1267 (diff) | |
download | linux-cc588e799549a4521eaea1276099b29b1c06e2c0.tar.xz |
drm/radeon: Clean up errors in r600.c
Fix the following errors reported by checkpatch:
ERROR: that open brace { should be on the previous line
Signed-off-by: GuoHua Chen <chenguohua_716@163.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon')
-rw-r--r-- | drivers/gpu/drm/radeon/r600.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c index a17b95eec65f..b5e97d95a19f 100644 --- a/drivers/gpu/drm/radeon/r600.c +++ b/drivers/gpu/drm/radeon/r600.c @@ -99,8 +99,7 @@ MODULE_FIRMWARE("radeon/SUMO_me.bin"); MODULE_FIRMWARE("radeon/SUMO2_pfp.bin"); MODULE_FIRMWARE("radeon/SUMO2_me.bin"); -static const u32 crtc_offsets[2] = -{ +static const u32 crtc_offsets[2] = { 0, AVIVO_D2CRTC_H_TOTAL - AVIVO_D1CRTC_H_TOTAL }; |