mirror of
https://github.com/armbian/build.git
synced 2025-08-09 20:56:57 +02:00
* sunxi-5.19: Initial state for megous patches * Add the ability to do 5.19 * Move to 5.19 - tested both - removed broken Opi Zero xradio driver https://armbian.atlassian.net/browse/AR-1280 * sunxi-5.19: fix tag for switch * sunxi-5.19: Initial state for armbian patches * sunxi-5.19: Add armbian patches to series.conf file * sanxi-5.19: Add other 2 patches * sunxi-5.19: Limit to use the 'wireless/xradio' module Limit the kernel version to less than 5.19 to use the 'wireless/xradio' module Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
27 lines
671 B
Diff
27 lines
671 B
Diff
From c3ee64d9f6641ddb92cf21ac636cd6265e75e258 Mon Sep 17 00:00:00 2001
|
|
From: The-going <48602507+The-going@users.noreply.github.com>
|
|
Date: Thu, 28 Apr 2022 15:45:14 +0300
|
|
Subject: [PATCH 155/170] Fix include uapi spi spidev module
|
|
|
|
---
|
|
drivers/spi/spidev.c | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
|
|
index 5b36dd91c..714140016 100644
|
|
--- a/drivers/spi/spidev.c
|
|
+++ b/drivers/spi/spidev.c
|
|
@@ -21,8 +21,7 @@
|
|
#include <linux/slab.h>
|
|
#include <linux/compat.h>
|
|
|
|
-#include <linux/spi/spi.h>
|
|
-#include <linux/spi/spidev.h>
|
|
+#include <uapi/linux/spi/spidev.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
--
|
|
2.35.3
|
|
|