On Sun, Nov 1, 2020 at 3:11 PM <t...@redhat.com> wrote: > > From: Tom Rix <t...@redhat.com> > > A semicolon is not needed after a switch statement. > > Signed-off-by: Tom Rix <t...@redhat.com> > --- > drivers/powercap/intel_rapl_common.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/powercap/intel_rapl_common.c > b/drivers/powercap/intel_rapl_common.c > index 983d75bd5bd1..020373d6d3f1 100644 > --- a/drivers/powercap/intel_rapl_common.c > +++ b/drivers/powercap/intel_rapl_common.c > @@ -613,7 +613,7 @@ static u64 rapl_unit_xlate(struct rapl_domain *rd, enum > unit_type type, > case ARBITRARY_UNIT: > default: > return value; > - }; > + } > > if (to_raw) > return div64_u64(value, units) * scale; > --
Applied as 5.10-rc material, thanks!