From 15ade055295d13f95d49e3d99b09f3bbfb4a43e7 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Mon, 06 Nov 2023 07:25:24 +0000 Subject: [PATCH] add at24 driver --- kernel/include/linux/regulator/consumer.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/kernel/include/linux/regulator/consumer.h b/kernel/include/linux/regulator/consumer.h index b07601f..54fa3ee 100644 --- a/kernel/include/linux/regulator/consumer.h +++ b/kernel/include/linux/regulator/consumer.h @@ -488,6 +488,11 @@ return 0; } +static inline unsigned int regulator_get_linear_step(struct regulator *regulator) +{ + return 0; +} + static inline int regulator_set_current_limit(struct regulator *regulator, int min_uA, int max_uA) { -- Gitblit v1.6.2