Merge tag 'arc-4.4-rc1-part2' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc
[linux-2.6-block.git] / include / dt-bindings / input / input.h
CommitLineData
8851b9f1
LD
1/*
2 * This header provides constants for most input bindings.
3 *
4 * Most input bindings include key code, matrix key code format.
5 * In most cases, key code and matrix key code format uses
6 * the standard values/macro defined in this header.
7 */
8
9#ifndef _DT_BINDINGS_INPUT_INPUT_H
10#define _DT_BINDINGS_INPUT_INPUT_H
11
4f38b9f2 12#include "linux-event-codes.h"
8851b9f1
LD
13
14#define MATRIX_KEY(row, col, code) \
15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
16
17#endif /* _DT_BINDINGS_INPUT_INPUT_H */