On Sat, 6 Jan 2024, Suma Hegde wrote: > Remove unnecessary parenthesis around hsmp_get_tbl_dram_base(). > > Signed-off-by: Suma Hegde <suma.hegde@xxxxxxx> > Signed-off-by: Naveen Krishna Chatradhi <nchatrad@xxxxxxx> > --- > Changes since v4: > New patch, generated after splitting the 9th patch in v4 series > > drivers/platform/x86/amd/hsmp.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/platform/x86/amd/hsmp.c b/drivers/platform/x86/amd/hsmp.c > index ccf7cd8f98f6..99a34b48f78f 100644 > --- a/drivers/platform/x86/amd/hsmp.c > +++ b/drivers/platform/x86/amd/hsmp.c > @@ -643,12 +643,12 @@ static int hsmp_init_metric_tbl_bin_attr(struct bin_attribute **hattrs, u16 sock > hattrs[0] = hattr; > > if (plat_dev.proto_ver == HSMP_PROTO_VER6) > - return (hsmp_get_tbl_dram_base(sock_ind)); > + return hsmp_get_tbl_dram_base(sock_ind); > else > return 0; > } > > -/* One bin sysfs for metrics table*/ > +/* One bin sysfs for metrics table */ > #define NUM_HSMP_ATTRS 1 > > static int hsmp_create_attr_list(struct attribute_group *attr_grp, > Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@xxxxxxxxxxxxxxx> -- i.