#ifndef COLORS_H
#define COLORS_H
#define __reset "0"
#define __bold "1"
#define __black "30"
#define __red "31"
#define __green "32"
#define __yellow "33"
#define __blue "34"
#define __magenta "35"
#define __cyan "36"
#define __white "37"
#define __on_black "40"
#define __on_red "41"
#define __on_green "42"
#define __on_yellow "43"
#define __on_blue "44"
#define __on_magenta "45"
#define __on_cyan "46"
#define __on_white "47"
#define colorize_start(fore) "\033[" __##fore "m"
#define colorize_start_full(fore, back) "\033[" __##fore ";" __on_##back "m"
#define colorize_end() "\033[" __reset "m"
#endif /* COLORS_H */
t
regulator: twl-regulator: rework fixed regulator definition
TWL603X and TWL4030 are different and have different code logic.
Rework the regulator definition method so we can split the file
easily in twl4030 and twl6030.
Signed-off-by: Nicolae Rosia <Nicolae_Rosia@mentor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>