Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * This header provides constants for most Multiplexer bindings.
0004  *
0005  * Most Multiplexer bindings specify an idle state. In most cases, the
0006  * multiplexer can be left as is when idle, and in some cases it can
0007  * disconnect the input/output and leave the multiplexer in a high
0008  * impedance state.
0009  */
0010 
0011 #ifndef _DT_BINDINGS_MUX_MUX_H
0012 #define _DT_BINDINGS_MUX_MUX_H
0013 
0014 #define MUX_IDLE_AS_IS      (-1)
0015 #define MUX_IDLE_DISCONNECT (-2)
0016 
0017 #endif