2022-07-14 06:51:48 +00:00
|
|
|
From d3c5b26768dbe990c4e1bd79e420c11ce7491d51 Mon Sep 17 00:00:00 2001
|
|
|
|
From: OpenWrt community <openwrt-devel@lists.openwrt.org>
|
|
|
|
Date: Wed, 13 Jul 2022 11:36:00 +0200
|
|
|
|
Subject: [PATCH] swab: use stddefs.h instead of compiler.h
|
|
|
|
|
|
|
|
Fix an issue with kernel headers that broke perf.
|
|
|
|
|
|
|
|
---
|
|
|
|
include/uapi/linux/swab.h | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2021-11-04 20:52:43 +00:00
|
|
|
--- a/include/uapi/linux/swab.h
|
|
|
|
+++ b/include/uapi/linux/swab.h
|
|
|
|
@@ -3,7 +3,7 @@
|
|
|
|
#define _UAPI_LINUX_SWAB_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
-#include <linux/compiler.h>
|
|
|
|
+#include <linux/stddef.h>
|
|
|
|
#include <asm/bitsperlong.h>
|
|
|
|
#include <asm/swab.h>
|
|
|
|
|