02 Oct, 2020

1 commit

  • The only usage of qcom_labibb_ops is to assign it to the ops field in
    the regulator_desc struct, which is a const pointer. The only usage of
    pmi8998_lab_desc and pmi8998_ibb_desc is to assign their address to the
    desc field in the labibb_regulator_data struct which can be made const,
    since it is only copied into the desc field in the
    labbibb_regulator_data struct. This struct is modified, but that's a
    copy of the static one. Make them const to allow the compiler to put
    them in read-only memory.

    Signed-off-by: Rikard Falkeborn
    Link: https://lore.kernel.org/r/20200930162602.18583-1-rikard.falkeborn@gmail.com
    Signed-off-by: Mark Brown

    Rikard Falkeborn
     

15 Jul, 2020

1 commit

  • Qualcomm platforms have LAB(LCD AMOLED Boost)/IBB(Inverting Buck Boost)
    regulators, labibb for short, which are used as power supply for
    LCD Mode displays.

    This patch adds labibb regulator driver for pmi8998 PMIC, found on
    SDM845 platforms.

    [sumits: reworked the driver design as per upstream review]

    Signed-off-by: Nisha Kumari
    Signed-off-by: Sumit Semwal
    Link: https://lore.kernel.org/r/20200622124110.20971-5-sumit.semwal@linaro.org
    Signed-off-by: Mark Brown

    Nisha Kumari