summaryrefslogtreecommitdiffstats
path: root/fs/fat
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-08-05 10:21:37 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2022-08-08 14:45:05 +0200
commitf905cd88f916a638f4b7acefc687dab92135adb2 (patch)
tree745da007cdbe64733a5a922c108d9f7569a84d17 /fs/fat
parent47d6b05305e5b899c1e0fb7d0a8ecd3be2e6a07e (diff)
downloadbarebox-f905cd88f916a638f4b7acefc687dab92135adb2.tar.gz
barebox-f905cd88f916a638f4b7acefc687dab92135adb2.tar.xz
pbl: factor out pbl_bio API into pbl/bio.h
We'll be adding more PBL driver interface definitions into include/pbl, so move the block I/O stuff there as well. No functional change. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20220805082137.2202560-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'fs/fat')
-rw-r--r--fs/fat/fat-pbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fat/fat-pbl.c b/fs/fat/fat-pbl.c
index 93cd6decbc..6b8a807657 100644
--- a/fs/fat/fat-pbl.c
+++ b/fs/fat/fat-pbl.c
@@ -8,10 +8,10 @@
#define pr_fmt(fmt) "fat-pbl: " fmt
#include <common.h>
+#include <pbl/bio.h>
#include "integer.h"
#include "ff.h"
#include "diskio.h"
-#include "pbl.h"
DRESULT disk_read(FATFS *fat, BYTE *buf, DWORD sector, BYTE count)
{