Qualcomm SSDK is driver for Qualcomm Atheros switches and PHY-s. It is quite complicated and used by rest of the Qualcomm SDK stack for anything switch or PHY related. It is required for IPQ807x support as currently, there is no better driver for the built-in switch or UNIPHY. So, lets add the fixed-up version that supports kernel 5.15 for use on ipq807x target until a better driver is available. Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Signed-off-by: Robert Marko <robimarko@gmail.com>
23 lines
586 B
Diff
23 lines
586 B
Diff
From be352dd54d163c005611906ac6b87692c9b8a1e6 Mon Sep 17 00:00:00 2001
|
|
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
Date: Sat, 7 May 2022 19:03:55 +0200
|
|
Subject: [PATCH 09/11] 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
|
|
@@ -22,6 +22,7 @@
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
+#include <linux/switch.h>
|
|
|
|
#if defined(IN_SWCONFIG)
|
|
int
|