* [PATCH] drm/amd/pm:open brace '{' following function definitions go on the next line [not found] <20230724071121.8710-1-xujianghui@cdjrlc.com> @ 2023-07-24 7:12 ` sunran001 2023-07-24 8:44 ` [PATCH] drm/amd/pm: open " sunran001 0 siblings, 1 reply; 3+ messages in thread From: sunran001 @ 2023-07-24 7:12 UTC (permalink / raw) To: alexander.deucher; +Cc: amd-gfx, dri-devel, linux-kernel ERROR: open brace '{' following function definitions go on the next line Signed-off-by: Ran Sun <sunran001@208suo.com> --- drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c b/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c index c788aa7a99a9..5e408a195860 100644 --- a/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c +++ b/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c @@ -205,7 +205,8 @@ int smu_v12_0_set_default_dpm_tables(struct smu_context *smu) return smu_cmn_update_table(smu, SMU_TABLE_DPMCLOCKS, 0, smu_table->clocks_table, false); } -int smu_v12_0_mode2_reset(struct smu_context *smu){ +int smu_v12_0_mode2_reset(struct smu_context *smu) +{ return smu_cmn_send_smc_msg_with_param(smu, SMU_MSG_GfxDeviceDriverReset, SMU_RESET_MODE_2, NULL); } ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] drm/amd/pm: open brace '{' following function definitions go on the next line 2023-07-24 7:12 ` [PATCH] drm/amd/pm:open brace '{' following function definitions go on the next line sunran001 @ 2023-07-24 8:44 ` sunran001 2023-07-24 21:55 ` Alex Deucher 0 siblings, 1 reply; 3+ messages in thread From: sunran001 @ 2023-07-24 8:44 UTC (permalink / raw) To: alexander.deucher; +Cc: amd-gfx, dri-devel, linux-kernel ERROR: open brace '{' following function definitions go on the next line Signed-off-by: Ran Sun <sunran001@208suo.com> --- drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c b/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c index c788aa7a99a9..5e408a195860 100644 --- a/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c +++ b/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c @@ -205,7 +205,8 @@ int smu_v12_0_set_default_dpm_tables(struct smu_context *smu) return smu_cmn_update_table(smu, SMU_TABLE_DPMCLOCKS, 0, smu_table->clocks_table, false); } -int smu_v12_0_mode2_reset(struct smu_context *smu){ +int smu_v12_0_mode2_reset(struct smu_context *smu) +{ return smu_cmn_send_smc_msg_with_param(smu, SMU_MSG_GfxDeviceDriverReset, SMU_RESET_MODE_2, NULL); } ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/amd/pm: open brace '{' following function definitions go on the next line 2023-07-24 8:44 ` [PATCH] drm/amd/pm: open " sunran001 @ 2023-07-24 21:55 ` Alex Deucher 0 siblings, 0 replies; 3+ messages in thread From: Alex Deucher @ 2023-07-24 21:55 UTC (permalink / raw) To: sunran001; +Cc: alexander.deucher, dri-devel, amd-gfx, linux-kernel Applied. Thanks! On Mon, Jul 24, 2023 at 4:44 AM <sunran001@208suo.com> wrote: > > ERROR: open brace '{' following function definitions go on the next line > > Signed-off-by: Ran Sun <sunran001@208suo.com> > --- > drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c > b/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c > index c788aa7a99a9..5e408a195860 100644 > --- a/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c > +++ b/drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c > @@ -205,7 +205,8 @@ int smu_v12_0_set_default_dpm_tables(struct > smu_context *smu) > return smu_cmn_update_table(smu, SMU_TABLE_DPMCLOCKS, 0, > smu_table->clocks_table, false); > } > > -int smu_v12_0_mode2_reset(struct smu_context *smu){ > +int smu_v12_0_mode2_reset(struct smu_context *smu) > +{ > return smu_cmn_send_smc_msg_with_param(smu, > SMU_MSG_GfxDeviceDriverReset, SMU_RESET_MODE_2, NULL); > } ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-24 21:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20230724071121.8710-1-xujianghui@cdjrlc.com>
2023-07-24 7:12 ` [PATCH] drm/amd/pm:open brace '{' following function definitions go on the next line sunran001
2023-07-24 8:44 ` [PATCH] drm/amd/pm: open " sunran001
2023-07-24 21:55 ` Alex Deucher
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®