mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
28 lines
683 B
Diff
28 lines
683 B
Diff
From 8e3500df074625b3eb3a8ed4e8e0b1b116f13d0c Mon Sep 17 00:00:00 2001
|
|
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
Date: Sat, 7 May 2022 19:03:55 +0200
|
|
Subject: [PATCH] include: fix compilation error for parse_uci_option
|
|
|
|
Fix missing include for parse_uci_option
|
|
|
|
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
---
|
|
include/ref/ref_uci.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/include/ref/ref_uci.h b/include/ref/ref_uci.h
|
|
index a42ea153..0906c5ba 100755
|
|
--- a/include/ref/ref_uci.h
|
|
+++ b/include/ref/ref_uci.h
|
|
@@ -19,6 +19,7 @@
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
+#include <linux/switch.h>
|
|
|
|
#if defined(IN_SWCONFIG)
|
|
int
|
|
--
|
|
2.34.1
|
|
|