20 lines
457 B
C
20 lines
457 B
C
/*
|
|
* This header provides macros for regulator device bindings.
|
|
*
|
|
* Copyright (c) 2013, NVIDIA Corporation.
|
|
*
|
|
* Author: Laxman Dewangan <ldewangan@nvidia.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef __DT_BINDINGS_REGULATOR_H__
|
|
#define __DT_BINDINGS_REGULATOR_H__
|
|
|
|
#define REGULATOR_MODE_FAST 0x1
|
|
#define REGULATOR_MODE_NORMAL 0x2
|
|
#define REGULATOR_MODE_IDLE 0x4
|
|
#define REGULATOR_MODE_STANDBY 0x8
|
|
#define REGULATOR_MODE_OFF 0x10
|
|
|
|
#endif /* __DT_BINDINGS_REGULATOR_H__ */
|