diff options
| author | Mitchell Horne <mhorne@FreeBSD.org> | 2025-10-22 14:29:37 +0000 |
|---|---|---|
| committer | Mitchell Horne <mhorne@FreeBSD.org> | 2025-10-22 14:35:25 +0000 |
| commit | fe7954d723f85abd6eaf035db92a3a60a7803eb4 (patch) | |
| tree | 2c060a30dd6f0522f65317bc1f54e336c5fbe51b | |
| parent | 3e9ad70a30d93fc8bc759af7ec57aaa7e0b2d4f6 (diff) | |
modules/allwinner: add nvmem_if.h to SRCS
Ensure the header is generated; it is a dependency for these drivers.
This fixes standalone module builds and riscv LINT.
Reported by: zlei
Sponsored by: The FreeBSD Foundation
Fixes: 5522519731b7 ("modules: enable allwinner kmods on riscv")
| -rw-r--r-- | sys/modules/allwinner/aw_sid/Makefile | 3 | ||||
| -rw-r--r-- | sys/modules/allwinner/aw_thermal/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/modules/allwinner/aw_sid/Makefile b/sys/modules/allwinner/aw_sid/Makefile index 7d3dad68acb9..2679aa83d09d 100644 --- a/sys/modules/allwinner/aw_sid/Makefile +++ b/sys/modules/allwinner/aw_sid/Makefile @@ -7,6 +7,7 @@ SRCS+= \ bus_if.h \ clknode_if.h \ device_if.h \ - ofw_bus_if.h \ + nvmem_if.h \ + ofw_bus_if.h .include <bsd.kmod.mk> diff --git a/sys/modules/allwinner/aw_thermal/Makefile b/sys/modules/allwinner/aw_thermal/Makefile index 911e6406d947..924b09a3b3c8 100644 --- a/sys/modules/allwinner/aw_thermal/Makefile +++ b/sys/modules/allwinner/aw_thermal/Makefile @@ -7,6 +7,7 @@ SRCS+= \ bus_if.h \ clknode_if.h \ device_if.h \ - ofw_bus_if.h \ + nvmem_if.h \ + ofw_bus_if.h .include <bsd.kmod.mk> |
