Patch "regulator: core: Stub devm_regulator_bulk_get_const() if !CONFIG_REGULATOR" has been added to the 6.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    regulator: core: Stub devm_regulator_bulk_get_const() if !CONFIG_REGULATOR

to the 6.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     regulator-core-stub-devm_regulator_bulk_get_const-if.patch
and it can be found in the queue-6.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 1ae2a124d77d02678729e3247d456eb9641d2a54
Author: Douglas Anderson <dianders@xxxxxxxxxxxx>
Date:   Fri Aug 30 07:35:12 2024 -0700

    regulator: core: Stub devm_regulator_bulk_get_const() if !CONFIG_REGULATOR
    
    [ Upstream commit 1a5caec7f80ca2e659c03f45378ee26915f4eda2 ]
    
    When adding devm_regulator_bulk_get_const() I missed adding a stub for
    when CONFIG_REGULATOR is not enabled. Under certain conditions (like
    randconfig testing) this can cause the compiler to reports errors
    like:
    
      error: implicit declaration of function 'devm_regulator_bulk_get_const';
      did you mean 'devm_regulator_bulk_get_enable'?
    
    Add the stub.
    
    Fixes: 1de452a0edda ("regulator: core: Allow drivers to define their init data as const")
    Reported-by: kernel test robot <lkp@xxxxxxxxx>
    Closes: https://lore.kernel.org/oe-kbuild-all/202408301813.TesFuSbh-lkp@xxxxxxxxx/
    Cc: Neil Armstrong <neil.armstrong@xxxxxxxxxx>
    Signed-off-by: Douglas Anderson <dianders@xxxxxxxxxxxx>
    Link: https://patch.msgid.link/20240830073511.1.Ib733229a8a19fad8179213c05e1af01b51e42328@changeid
    Signed-off-by: Mark Brown <broonie@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h
index 59d0b9a79e6e..e6ad927bb4a8 100644
--- a/include/linux/regulator/consumer.h
+++ b/include/linux/regulator/consumer.h
@@ -451,6 +451,14 @@ static inline int of_regulator_bulk_get_all(struct device *dev, struct device_no
 	return 0;
 }
 
+static inline int devm_regulator_bulk_get_const(
+	struct device *dev, int num_consumers,
+	const struct regulator_bulk_data *in_consumers,
+	struct regulator_bulk_data **out_consumers)
+{
+	return 0;
+}
+
 static inline int regulator_bulk_enable(int num_consumers,
 					struct regulator_bulk_data *consumers)
 {




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux