![]() |
|
|||
0001 /* SPDX-License-Identifier: GPL-2.0+ OR MIT */ 0002 /* 0003 * This header provides constants for Apple pinctrl bindings. 0004 */ 0005 0006 #ifndef _DT_BINDINGS_PINCTRL_APPLE_H 0007 #define _DT_BINDINGS_PINCTRL_APPLE_H 0008 0009 #define APPLE_PINMUX(pin, func) ((pin) | ((func) << 16)) 0010 #define APPLE_PIN(pinmux) ((pinmux) & 0xffff) 0011 #define APPLE_FUNC(pinmux) ((pinmux) >> 16) 0012 0013 #endif /* _DT_BINDINGS_PINCTRL_APPLE_H */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |