mfd: sec-core: Cleanup formatting to a consistent style
Cleanup the formatting to have consistent style across the file (only white-space issues). No expected difference in code. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
2f17dd34ff
commit
4720eb4752
|
@ -114,7 +114,8 @@ static const struct mfd_cell s2mpu02_devs[] = {
|
||||||
|
|
||||||
#ifdef CONFIG_OF
|
#ifdef CONFIG_OF
|
||||||
static const struct of_device_id sec_dt_match[] = {
|
static const struct of_device_id sec_dt_match[] = {
|
||||||
{ .compatible = "samsung,s5m8767-pmic",
|
{
|
||||||
|
.compatible = "samsung,s5m8767-pmic",
|
||||||
.data = (void *)S5M8767X,
|
.data = (void *)S5M8767X,
|
||||||
}, {
|
}, {
|
||||||
.compatible = "samsung,s2mps11-pmic",
|
.compatible = "samsung,s2mps11-pmic",
|
||||||
|
@ -309,8 +310,8 @@ static void sec_pmic_configure(struct sec_pmic_dev *sec_pmic)
|
||||||
* the sub-modules need not instantiate another instance while parsing their
|
* the sub-modules need not instantiate another instance while parsing their
|
||||||
* platform data.
|
* platform data.
|
||||||
*/
|
*/
|
||||||
static struct sec_platform_data *sec_pmic_i2c_parse_dt_pdata(
|
static struct sec_platform_data *
|
||||||
struct device *dev)
|
sec_pmic_i2c_parse_dt_pdata(struct device *dev)
|
||||||
{
|
{
|
||||||
struct sec_platform_data *pd;
|
struct sec_platform_data *pd;
|
||||||
|
|
||||||
|
@ -331,8 +332,8 @@ static struct sec_platform_data *sec_pmic_i2c_parse_dt_pdata(
|
||||||
return pd;
|
return pd;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static struct sec_platform_data *sec_pmic_i2c_parse_dt_pdata(
|
static struct sec_platform_data *
|
||||||
struct device *dev)
|
sec_pmic_i2c_parse_dt_pdata(struct device *dev)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue