mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
b37c384843
Change my e-mail address to kabel@kernel.org, and fix my name in non-code parts (add diacritical mark). Link: https://lkml.kernel.org/r/20210325171123.28093-2-kabel@kernel.org Signed-off-by: Marek Behún <kabel@kernel.org> Cc: Bartosz Golaszewski <bgolaszewski@baylibre.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Jassi Brar <jassisinghbrar@gmail.com> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Pavel Machek <pavel@ucw.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
17 lines
411 B
C
17 lines
411 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Constant for device tree bindings for Turris Mox module configuration bus
|
|
*
|
|
* Copyright (C) 2019 Marek Behún <kabel@kernel.org>
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_BUS_MOXTET_H
|
|
#define _DT_BINDINGS_BUS_MOXTET_H
|
|
|
|
#define MOXTET_IRQ_PCI 0
|
|
#define MOXTET_IRQ_USB3 4
|
|
#define MOXTET_IRQ_PERIDOT(n) (8 + (n))
|
|
#define MOXTET_IRQ_TOPAZ 12
|
|
|
|
#endif /* _DT_BINDINGS_BUS_MOXTET_H */
|