diff options
author | chenxuebing <chenxb_99091@126.com> | 2024-01-11 06:11:39 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-01-18 23:38:15 +0300 |
commit | 882c82b9ac6698c2e03d1d1c5e577ab40dfc6a9a (patch) | |
tree | 43638214fba1924f68b443f384f587b874b4a930 | |
parent | 3c642f34e9c644790ef5feb116c528d83c165365 (diff) | |
download | linux-882c82b9ac6698c2e03d1d1c5e577ab40dfc6a9a.tar.xz |
drm/amd: Clean up errors in vega10_ip_offset.h
Fix the following errors reported by checkpatch:
ERROR: open brace '{' following struct go on the same line
Signed-off-by: chenxuebing <chenxb_99091@126.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/include/cyan_skillfish_ip_offset.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/include/cyan_skillfish_ip_offset.h b/drivers/gpu/drm/amd/include/cyan_skillfish_ip_offset.h index ce79e5de8ce3..1a73296a9a74 100644 --- a/drivers/gpu/drm/amd/include/cyan_skillfish_ip_offset.h +++ b/drivers/gpu/drm/amd/include/cyan_skillfish_ip_offset.h @@ -25,13 +25,11 @@ #define MAX_SEGMENT 5 -struct IP_BASE_INSTANCE -{ +struct IP_BASE_INSTANCE { unsigned int segment[MAX_SEGMENT]; } __maybe_unused; -struct IP_BASE -{ +struct IP_BASE { struct IP_BASE_INSTANCE instance[MAX_INSTANCE]; } __maybe_unused; |