mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-19 03:43:29 +00:00
23 lines
580 B
Diff
23 lines
580 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(+)
|
||
|
|
||
|
--- 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
|