From 005cecb30a3025f69750936f26e37b10412f45bb Mon Sep 17 00:00:00 2001 From: Hiren Panchasara Date: Mon, 21 Nov 2016 21:07:43 +0000 Subject: [PATCH] r308942 broke kernel build. Add acpi_if.h to module makefile to fix it. Submitted by: peter --- sys/modules/bytgpio/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/bytgpio/Makefile b/sys/modules/bytgpio/Makefile index d1e54e7402b..db06e4af9af 100644 --- a/sys/modules/bytgpio/Makefile +++ b/sys/modules/bytgpio/Makefile @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../dev/gpio KMOD= bytgpio SRCS= bytgpio.c -SRCS+= device_if.h bus_if.h gpio_if.h +SRCS+= acpi_if.h device_if.h bus_if.h gpio_if.h .include