08 May, 2013

1 commit

  • power_state_active_get is used only in this file. Make it static.
    While at it also move this function definition inside the
    CONFIG_REGULATOR_DEBUG macro as it is called only from within it.
    This also avoids further build warning related to unused definition.

    Signed-off-by: Sachin Kamat
    Signed-off-by: Mark Brown

    Sachin Kamat
     

26 Jan, 2013

1 commit

  • Building for the snowball board, I ran into this compile failure:

    CC drivers/regulator/dbx500-prcmu.o
    arm-test.git/drivers/regulator/dbx500-prcmu.c:119:11: error: 'THIS_MODULE' undeclared here (not in a function)
    make[3]: *** [drivers/regulator/dbx500-prcmu.o] Error 1
    make[2]: *** [drivers/regulator] Error 2

    Commit 38e968380 "regulators/db8500: split off shared dbx500 code"
    separated out the dbx500 code but did not copy over the required include
    to linux/module.h.

    Signed-off-by: Steven Rostedt
    Signed-off-by: Mark Brown

    Steven Rostedt
     

20 Nov, 2012

2 commits


20 Jan, 2012

1 commit

  • As we progress with DB5500 and future voltage domain regulators
    based on very similar hardware as found in the DB8500 PRCMU,
    it makes sense to split off the generic parts and introduce
    some generic debug code for the DBx500 regulators. This patch
    accoplish a basic abstraction of the DBx500 voltage domain
    regulators.

    Signed-off-by: Bengt Jonsson
    Signed-off-by: Linus Walleij
    Signed-off-by: Mark Brown

    Bengt Jonsson