Commit a8193af7 authored by Tom Rix's avatar Tom Rix Committed by Rafael J. Wysocki

powercap/intel_rapl: remove unneeded semicolon

A semicolon is not needed after a switch statement.
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 3cea11cd
...@@ -620,7 +620,7 @@ static u64 rapl_unit_xlate(struct rapl_domain *rd, enum unit_type type, ...@@ -620,7 +620,7 @@ static u64 rapl_unit_xlate(struct rapl_domain *rd, enum unit_type type,
case ARBITRARY_UNIT: case ARBITRARY_UNIT:
default: default:
return value; return value;
}; }
if (to_raw) if (to_raw)
return div64_u64(value, units) * scale; return div64_u64(value, units) * scale;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment