summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2023-11-22 18:29:32 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2023-11-23 15:45:54 +0100
commitc7710eefb960f08f8d812ce69b8aead786bb866b (patch)
treed2b1e50fe47f1a8223f3a655f2093660041174c1 /lib
parentfb64146c451b74fcd48e97008890a6cfba913db6 (diff)
downloadbarebox-c7710eefb960f08f8d812ce69b8aead786bb866b.tar.gz
barebox-c7710eefb960f08f8d812ce69b8aead786bb866b.tar.xz
include: provide linux/errno.h
We don't have the historic baggage of having to support different errno definitions depending on architecture. We thus have only asm-generic/errno.h and include that from errno.h and elsewhere directly. Kernel code however includes <linux/errno.h>, so let's provide that file as well and define there the Linux-specific errno's and include <asm-generic/errno.h> for all other errnos. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20231122172951.376531-2-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/reed_solomon/reed_solomon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reed_solomon/reed_solomon.c b/lib/reed_solomon/reed_solomon.c
index 51c67c3c8d..80c0ec4f7a 100644
--- a/lib/reed_solomon/reed_solomon.c
+++ b/lib/reed_solomon/reed_solomon.c
@@ -44,7 +44,7 @@
#include <module.h>
#include <linux/string.h>
#include <stdio.h>
-#include <asm-generic/errno.h>
+#include <linux/errno.h>
/* This list holds all currently allocated rs control structures */
static LIST_HEAD (rslist);