]> Git Repo - linux.git/commitdiff
powercap: intel_rapl: Fix trailing semicolon
authorLuis de Bethencourt <[email protected]>
Wed, 17 Jan 2018 10:30:34 +0000 (10:30 +0000)
committerRafael J. Wysocki <[email protected]>
Wed, 17 Jan 2018 11:56:24 +0000 (12:56 +0100)
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: Luis de Bethencourt <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
drivers/powercap/intel_rapl.c

index 0188cff98cdd160b2cd46aec33c4986841cc3fd6..35636e1d8a3d8762c78d75426a9b480fb65ff064 100644 (file)
@@ -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);
This page took 0.062182 seconds and 4 git commands to generate.