[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1406311757-2834-1-git-send-email-broonie@kernel.org>
Date: Fri, 25 Jul 2014 19:09:17 +0100
From: Mark Brown <broonie@...nel.org>
To: linux-kernel@...r.kernel.org
Cc: linaro-kernel@...ts.linaro.org, Mark Brown <broonie@...aro.org>
Subject: [PATCH] regulator: Add missing statics for stub functions
From: Mark Brown <broonie@...aro.org>
So we don't get multiple definitions.
Signed-off-by: Mark Brown <broonie@...aro.org>
---
include/linux/regulator/consumer.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h
index 0b1c8d09a6b1..a5937148f8a1 100644
--- a/include/linux/regulator/consumer.h
+++ b/include/linux/regulator/consumer.h
@@ -460,20 +460,20 @@ static inline int regulator_allow_bypass(struct regulator *regulator,
return 0;
}
-struct regmap *regulator_get_regmap(struct regulator *regulator)
+static struct regmap *regulator_get_regmap(struct regulator *regulator)
{
return ERR_PTR(-EOPNOTSUPP);
}
-int regulator_get_hardware_vsel_register(struct regulator *regulator,
- unsigned *vsel_reg,
- unsigned *vsel_mask)
+static int regulator_get_hardware_vsel_register(struct regulator *regulator,
+ unsigned *vsel_reg,
+ unsigned *vsel_mask)
{
return -EOPNOTSUPP;
}
-int regulator_list_hardware_vsel(struct regulator *regulator,
- unsigned selector)
+static int regulator_list_hardware_vsel(struct regulator *regulator,
+ unsigned selector)
{
return -EOPNOTSUPP;
}
--
2.0.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists