Bindings for Simple regulator consumer
==========================================

Required properties:
--------------------
- compatible			: must be "sony,simple_regulator_consumer".

Optional properties:
--------------------
- supply-names	 		: an array of supplier name
- <supplier-name>-supply	: phandle of regulator for power control
- independ_control		: an array of independ control name
- <independ_control>-supply	: phandle of regulator for independ control
- boot_on			: the flag to enable regulators on boot-up
- suspend_off			: the flag to regulators off on suspend
- pm-sync-dev                   : array of pm syncronous device phandlers
                                : Up to 4 devices, only platform/i2c/spi device

Example:
	reg-amp regulator_amp {
		...
	};

	reg-dac regulator_dac {
		...
	};

	audio-reg-consumer {
		compatible = "sony,simple_regulator_consumer";
		supply-names = "power_amp", "power_dac";

		power_amp-supply = <&reg-amp>;
		power_dac-supply = <&reg-dac>;

		boot_on;
		suspend_off;
		pm-sync-dev = <&es9080>, <&lcddev>;
	};
