Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751743AbdG1Bne (ORCPT ); Thu, 27 Jul 2017 21:43:34 -0400 Received: from mail-yw0-f195.google.com ([209.85.161.195]:34416 "EHLO mail-yw0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751693AbdG1Bnc (ORCPT ); Thu, 27 Jul 2017 21:43:32 -0400 MIME-Version: 1.0 In-Reply-To: <20170725214756.GA102262@beast> References: <20170725214756.GA102262@beast> From: Alex Deucher Date: Thu, 27 Jul 2017 21:43:31 -0400 Message-ID: Subject: Re: [PATCH] drm/amd/powerplay: rv: Use designated initializers To: Kees Cook Cc: LKML , David Airlie , amd-gfx list , Maling list - DRI developers , Alex Deucher , Rex Zhu , =?UTF-8?Q?Christian_K=C3=B6nig?= , Hawking Zhang Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2380 Lines: 71 On Tue, Jul 25, 2017 at 5:47 PM, Kees Cook wrote: > As done for vega10 in commit 3ddd396f6b57 ("drm/amd/powerplay: Use > designated initializers") mark other tableFunction entries with designated > initializers. The randstruct plugin requires designated initializers for > structures that are entirely function pointers. > > Cc: Rex Zhu > Cc: Hawking Zhang > Cc: Alex Deucher > Signed-off-by: Kees Cook > --- > If I can get an Ack for this, I'll carry it in the gcc-plugins tree, unless > you think this is worth landing for v4.13, in which case, please take it > now. :) > Acked-by: Alex Deucher I'm happy to take this through my tree if that is ok with you. Alex > Thanks! > --- > drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c > index 4c7f430b36eb..8e6cfd89c7e0 100644 > --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c > +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c > @@ -308,8 +308,8 @@ static int rv_tf_set_num_active_display(struct pp_hwmgr *hwmgr, void *input, > } > > static const struct phm_master_table_item rv_set_power_state_list[] = { > - { NULL, rv_tf_set_clock_limit }, > - { NULL, rv_tf_set_num_active_display }, > + { .tableFunction = rv_tf_set_clock_limit }, > + { .tableFunction = rv_tf_set_num_active_display }, > { } > }; > > @@ -382,7 +382,7 @@ static int rv_tf_disable_gfx_off(struct pp_hwmgr *hwmgr, > } > > static const struct phm_master_table_item rv_disable_dpm_list[] = { > - {NULL, rv_tf_disable_gfx_off}, > + { .tableFunction = rv_tf_disable_gfx_off }, > { }, > }; > > @@ -407,7 +407,7 @@ static int rv_tf_enable_gfx_off(struct pp_hwmgr *hwmgr, > } > > static const struct phm_master_table_item rv_enable_dpm_list[] = { > - {NULL, rv_tf_enable_gfx_off}, > + { .tableFunction = rv_tf_enable_gfx_off }, > { }, > }; > > -- > 2.7.4 > > > -- > Kees Cook > Pixel Security > _______________________________________________ > amd-gfx mailing list > amd-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/amd-gfx