mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-25 05:47:00 +00:00
f4c5d0e77e
Cherry-pick patches to support building RP1 modules. Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/17233 Signed-off-by: Robert Marko <robimarko@gmail.com> (cherry picked from commit 613dd79d5eabe53f07a7b74cc062d91cfc550403)
25 lines
745 B
Diff
25 lines
745 B
Diff
From cd26850713088942ca4f9a248a8bed1f0504a58f Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Thu, 19 Dec 2024 15:11:40 +0000
|
|
Subject: [PATCH 1471/1482] fixup! misc: Add RP1 PIO driver
|
|
|
|
Change the Kconfig dependencies so that RP1_PIO depends on FIRMWARE_RP1,
|
|
rather than selecting it.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/misc/Kconfig | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/misc/Kconfig
|
|
+++ b/drivers/misc/Kconfig
|
|
@@ -19,7 +19,7 @@ config BCM2835_SMI
|
|
|
|
config RP1_PIO
|
|
tristate "Raspberry Pi RP1 PIO driver"
|
|
- select FIRMWARE_RP1
|
|
+ depends on FIRMWARE_RP1 || COMPILE_TEST
|
|
default n
|
|
help
|
|
Driver providing control of the Raspberry Pi PIO block, as found in
|