Date: Sat, 16 Jan 2021 10:34:45 GMT From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 8ca9ff4f28d2 - main - mips: Fix build by using the correct device-tree include path Message-ID: <202101161034.10GAYj2v088497@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=8ca9ff4f28d2055741e423d1c7befe178b3d6faf commit 8ca9ff4f28d2055741e423d1c7befe178b3d6faf Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2021-01-16 10:34:10 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2021-01-16 10:34:10 +0000 mips: Fix build by using the correct device-tree include path --- sys/mips/ingenic/jz4780_clock.c | 2 +- sys/mips/ingenic/jz4780_gpio.c | 2 +- sys/mips/mediatek/mtk_gpio_v1.c | 2 +- sys/mips/mediatek/mtk_gpio_v2.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/mips/ingenic/jz4780_clock.c b/sys/mips/ingenic/jz4780_clock.c index 7a6a989d5e93..f743e193c7a9 100644 --- a/sys/mips/ingenic/jz4780_clock.c +++ b/sys/mips/ingenic/jz4780_clock.c @@ -55,7 +55,7 @@ __FBSDID("$FreeBSD$"); #include "clkdev_if.h" -#include <gnu/dts/include/dt-bindings/clock/jz4780-cgu.h> +#include <dt-bindings/clock/jz4780-cgu.h> /********************************************************************** * JZ4780 CGU clock domain diff --git a/sys/mips/ingenic/jz4780_gpio.c b/sys/mips/ingenic/jz4780_gpio.c index fe1de7ccb915..77d1f5baaa3a 100644 --- a/sys/mips/ingenic/jz4780_gpio.c +++ b/sys/mips/ingenic/jz4780_gpio.c @@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$"); #include <dev/ofw/ofw_bus_subr.h> #include <mips/ingenic/jz4780_regs.h> -#include <gnu/dts/include/dt-bindings/interrupt-controller/irq.h> +#include <dt-bindings/interrupt-controller/irq.h> #include "jz4780_gpio_if.h" #include "gpio_if.h" diff --git a/sys/mips/mediatek/mtk_gpio_v1.c b/sys/mips/mediatek/mtk_gpio_v1.c index 2771c6610d35..8c7df30f81e3 100644 --- a/sys/mips/mediatek/mtk_gpio_v1.c +++ b/sys/mips/mediatek/mtk_gpio_v1.c @@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$"); #include <dev/ofw/ofw_bus.h> #include <dev/ofw/ofw_bus_subr.h> -#include <gnu/dts/include/dt-bindings/interrupt-controller/irq.h> +#include <dt-bindings/interrupt-controller/irq.h> #include "gpio_if.h" #include "pic_if.h" diff --git a/sys/mips/mediatek/mtk_gpio_v2.c b/sys/mips/mediatek/mtk_gpio_v2.c index cd1708261fd4..677c42c64c0b 100644 --- a/sys/mips/mediatek/mtk_gpio_v2.c +++ b/sys/mips/mediatek/mtk_gpio_v2.c @@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$"); #include <dev/ofw/ofw_bus.h> #include <dev/ofw/ofw_bus_subr.h> -#include <gnu/dts/include/dt-bindings/interrupt-controller/irq.h> +#include <dt-bindings/interrupt-controller/irq.h> #include "gpio_if.h" #include "pic_if.h"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101161034.10GAYj2v088497>