From 6ba2699056ebf3ba3f2cfe0433a3d891567ee12a Mon Sep 17 00:00:00 2001 From: Justin Hibbits Date: Fri, 19 Apr 2013 05:46:16 +0000 Subject: [PATCH] Fix the uart(4) module build. Without uart_dev_lpc the module cannot be loaded. --- sys/modules/uart/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/uart/Makefile b/sys/modules/uart/Makefile index 06b005b9765..b295b5fc810 100644 --- a/sys/modules/uart/Makefile +++ b/sys/modules/uart/Makefile @@ -23,7 +23,7 @@ KMOD= uart SRCS= uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \ uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \ uart_core.c ${uart_cpu_machine} uart_dbg.c \ - uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \ + uart_dev_lpc.c uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \ uart_dev_z8530.c \ uart_if.c uart_if.h uart_subr.c uart_tty.c