diff options
author | 2019-04-13 18:12:01 +0000 | |
---|---|---|
committer | 2019-04-13 18:12:01 +0000 | |
commit | a5dec88449bbf9e617ca13a066d5e1756e495e0c (patch) | |
tree | 8805e97c8db8d7b0d43d1e4c25200e239e0d81c8 /sys | |
parent | Avoid leak in SSL_dup_CA_list() (diff) | |
download | wireguard-openbsd-a5dec88449bbf9e617ca13a066d5e1756e495e0c.tar.xz wireguard-openbsd-a5dec88449bbf9e617ca13a066d5e1756e495e0c.zip |
Add missing compatibles for newer Linux kernel bindings.
ok patrick@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/fdt/mvpinctrl.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/dev/fdt/mvpinctrl.c b/sys/dev/fdt/mvpinctrl.c index b0613ecb351..5cbd5f8344c 100644 --- a/sys/dev/fdt/mvpinctrl.c +++ b/sys/dev/fdt/mvpinctrl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mvpinctrl.c,v 1.4 2018/03/21 09:17:21 kettenis Exp $ */ +/* $OpenBSD: mvpinctrl.c,v 1.5 2019/04/13 18:12:01 kettenis Exp $ */ /* * Copyright (c) 2013,2016 Patrick Wildt <patrick@blueri.se> * Copyright (c) 2016 Mark Kettenis <kettenis@openbsd.org> @@ -96,6 +96,18 @@ struct mvpinctrl_pins mvpinctrl_pins[] = { "marvell,cp110-pinctrl", armada_cp110_pins, nitems(armada_cp110_pins) }, + { + "marvell,armada-7k-pinctrl", + armada_cp110_pins, nitems(armada_cp110_pins) + }, + { + "marvell,armada-8k-cpm-pinctrl", + armada_cp110_pins, nitems(armada_cp110_pins) + }, + { + "marvell,armada-8k-cps-pinctrl", + armada_cp110_pins, nitems(armada_cp110_pins) + }, }; int |