From 304ac69eca623d63510aa61853adc1ea60593323 Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Wed, 29 May 2024 19:07:51 +0200 Subject: [PATCH] puc: Make kernel module working We need uart_bus_puc.c in the module for it to work. Sponsored by: Beckhoff Automation GmbH & Co. KG --- sys/modules/puc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/puc/Makefile b/sys/modules/puc/Makefile index 6e14ce0ed26..cfd48bee5ff 100644 --- a/sys/modules/puc/Makefile +++ b/sys/modules/puc/Makefile @@ -1,8 +1,8 @@ -.PATH: ${SRCTOP}/sys/dev/puc +.PATH: ${SRCTOP}/sys/dev/puc ${SRCTOP}/sys/dev/uart/ KMOD= puc -SRCS= puc.c puc_cfg.c puc_pci.c +SRCS= puc.c puc_cfg.c puc_pci.c uart_bus_puc.c SRCS+= bus_if.h device_if.h serdev_if.c serdev_if.h pci_if.h .include