mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Bastian Krause <bst@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Bastian Krause <bst@pengutronix.de>
Subject: [PATCH] partitions: dos: prefix hex sector numbers with 0x
Date: Wed, 28 Aug 2024 16:10:15 +0200	[thread overview]
Message-ID: <20240828141015.3137381-1-bst@pengutronix.de> (raw)

The sector numbers are logged in hexadecimal format. This might not be
immediately clear, so prefix the numbers with 0x.

Signed-off-by: Bastian Krause <bst@pengutronix.de>
---
 common/partitions/dos.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/partitions/dos.c b/common/partitions/dos.c
index 8e4edd885bf..1e3317a6697 100644
--- a/common/partitions/dos.c
+++ b/common/partitions/dos.c
@@ -134,7 +134,7 @@ static void dos_extended_partition(struct block_device *blk, struct dos_partitio
 	while (1) {
 		int rc, i;
 
-		dev_dbg(blk->dev, "expect EBR in sector %x\n", ebr_sector);
+		dev_dbg(blk->dev, "expect EBR in sector 0x%x\n", ebr_sector);
 
 		rc = block_read(blk, buf, ebr_sector, 1);
 		if (rc != 0) {
@@ -144,7 +144,7 @@ static void dos_extended_partition(struct block_device *blk, struct dos_partitio
 
 		/* sanity checks */
 		if (buf[0x1fe] != 0x55 || buf[0x1ff] != 0xaa) {
-			dev_err(blk->dev, "sector %x doesn't contain an EBR signature\n", ebr_sector);
+			dev_err(blk->dev, "sector 0x%x doesn't contain an EBR signature\n", ebr_sector);
 			goto out;
 		}
 
-- 
2.39.2




             reply	other threads:[~2024-08-28 14:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-28 14:10 Bastian Krause [this message]
2024-09-02  7:59 ` Sascha Hauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240828141015.3137381-1-bst@pengutronix.de \
    --to=bst@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox