Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01857cf7 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Rafael J. Wysocki
Browse files

powercap: intel_rapl: Fix trailing semicolon



The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 52b3672c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1211,7 +1211,7 @@ static int rapl_package_register_powercap(struct rapl_package *rp)
	struct rapl_domain *rd;
	char dev_name[17]; /* max domain name = 7 + 1 + 8 for int + 1 for null*/
	struct powercap_zone *power_zone = NULL;
	int nr_pl, ret;;
	int nr_pl, ret;

	/* Update the domain data of the new package */
	rapl_update_domain_data(rp);