summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2022-04-21 11:16:09 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2022-04-21 11:16:09 +0200
commit4811863eae2d1e710862e10d7171edbe8041056f (patch)
tree8899ceeff211b381ec7f08e2dc6c8a3d44f4a1e7 /common
parent7a942b81e4d10b4f729c19b09b5d330bfeb6ba0e (diff)
parentaaac1c35ed14c81a8ffc93874f8b004deae9e172 (diff)
downloadbarebox-4811863eae2d1e710862e10d7171edbe8041056f.tar.gz
barebox-4811863eae2d1e710862e10d7171edbe8041056f.tar.xz
Merge branch 'for-next/misc'
Diffstat (limited to 'common')
-rw-r--r--common/partitions/efi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/partitions/efi.c b/common/partitions/efi.c
index 0787b93f12..848bed2261 100644
--- a/common/partitions/efi.c
+++ b/common/partitions/efi.c
@@ -154,8 +154,8 @@ static int is_gpt_valid(struct block_device *blk, u64 lba,
/* Check the GPT header signature */
if (le64_to_cpu((*gpt)->signature) != GPT_HEADER_SIGNATURE) {
- dev_dbg(blk->dev, "GUID Partition Table Header signature is wrong:"
- "0x%llX != 0x%llX\n",
+ dev_dbg(blk->dev, "GUID Partition Table Header signature at LBA"
+ "%llu is wrong: 0x%llX != 0x%llX\n", lba,
(unsigned long long)le64_to_cpu((*gpt)->signature),
(unsigned long long)GPT_HEADER_SIGNATURE);
goto fail;