summaryrefslogtreecommitdiff
path: root/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/0039-nvmxip-move-header-to-include.patch
blob: b745fe9b6b2ee283fd93804aecfd3e38be181fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
From d280414229d7bbee368f40be6cde17e4f251dd0f Mon Sep 17 00:00:00 2001
From: Rui Miguel Silva <rui.silva@linaro.org>
Date: Fri, 9 Jun 2023 13:31:53 +0100
Subject: [PATCH 39/42] nvmxip: move header to include

Move header to include to allow external code
to get the internal bdev structures to access
block device operations.

as at it, just add the UCLASS_NVMXIP string
so we get the correct output in partitions
listing.

Upstream-Status: Pending
Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
---
 disk/part.c                              | 3 +++
 {drivers/mtd/nvmxip => include}/nvmxip.h | 0
 2 files changed, 3 insertions(+)
 rename {drivers/mtd/nvmxip => include}/nvmxip.h (100%)

diff --git a/disk/part.c b/disk/part.c
index 5ee60a7fb5..593dd0004f 100644
--- a/disk/part.c
+++ b/disk/part.c
@@ -270,6 +270,9 @@ static void print_part_header(const char *type, struct blk_desc *dev_desc)
 	case UCLASS_NVME:
 		puts ("NVMe");
 		break;
+	case UCLASS_NVMXIP:
+		puts ("NVMXIP");
+		break;
 	case UCLASS_PVBLOCK:
 		puts("PV BLOCK");
 		break;
diff --git a/drivers/mtd/nvmxip/nvmxip.h b/include/nvmxip.h
similarity index 100%
rename from drivers/mtd/nvmxip/nvmxip.h
rename to include/nvmxip.h
-- 
2.25.1