regulator: da9211: fix coccinelle warnings

drivers/regulator/da9211-regulator.c:281:2-3: Unneeded semicolon

 Removes unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Fengguang Wu 2014-08-29 12:41:59 +01:00 committed by Mark Brown
parent bf3baca6c5
commit c2a946e07f
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ static struct da9211_pdata *da9211_parse_regulators_dt(
pdata->init_data[n] = da9211_matches[i].init_data;
n++;
};
}
return pdata;
}