From: Alexander Shiyan <eagle.alexander923@gmail.com> To: barebox@lists.infradead.org Cc: Alexander Shiyan <eagle.alexander923@gmail.com> Subject: [PATCH 2/8] ata: ahci: Fix format string Date: Fri, 10 Jun 2022 08:40:44 +0300 [thread overview] Message-ID: <20220610054051.4911-3-eagle.alexander923@gmail.com> (raw) In-Reply-To: <20220610054051.4911-1-eagle.alexander923@gmail.com> drivers/ata/ahci.c: In function 'ahci_print_info': drivers/ata/ahci.c:517:9: warning: too many arguments for format [-Wformat-extra-args] Fixes: b5da6970bf23 ("ata: ahci: add missing capability in ahci_print_info()") Signed-off-by: Alexander Shiyan <eagle.alexander923@gmail.com> --- drivers/ata/ahci.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index eb9e1bd133..f4b93183ce 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -304,8 +304,8 @@ static int ahci_init_port(struct ahci_port *ahci_port) ahci_port->cmd_slot = mem; ahci_port->cmd_slot_dma = mem_dma; - ahci_port_debug(ahci_port, "cmd_slot = 0x%p (0x%pa)\n", - ahci_port->cmd_slot, ahci_port->cmd_slot_dma); + ahci_port_debug(ahci_port, "cmd_slot = 0x%p (0x%pad)\n", + ahci_port->cmd_slot, &ahci_port->cmd_slot_dma); /* * Second item: Received-FIS area @@ -320,8 +320,8 @@ static int ahci_init_port(struct ahci_port *ahci_port) ahci_port->cmd_tbl = mem + AHCI_CMD_LIST_SZ + AHCI_RX_FIS_SZ; ahci_port->cmd_tbl_dma = mem_dma + AHCI_CMD_LIST_SZ + AHCI_RX_FIS_SZ; - ahci_port_debug(ahci_port, "cmd_tbl = 0x%p (0x%pa)\n", - ahci_port->cmd_tbl, ahci_port->cmd_tbl_dma); + ahci_port_debug(ahci_port, "cmd_tbl = 0x%p (0x%pad)\n", + ahci_port->cmd_tbl, &ahci_port->cmd_tbl_dma); ahci_port->cmd_tbl_sg = ahci_port->cmd_tbl + AHCI_CMD_TBL_HDR_SZ; @@ -517,7 +517,7 @@ void ahci_print_info(struct ahci_device *ahci) printf("flags: " "%s%s%s%s%s%s%s" "%s%s%s%s%s%s%s" - "%s%s%s%s%s%s\n", + "%s%s%s%s%s%s%s\n", cap & HOST_CAP_64 ? "64bit " : "", cap & HOST_CAP_NCQ ? "ncq " : "", cap & HOST_CAP_SNTF ? "sntf " : "", -- 2.32.0 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2022-06-10 5:42 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-06-10 5:40 [PATCH 0/8] Misc fixes part II Alexander Shiyan 2022-06-10 5:40 ` [PATCH 1/8] ARM: optee-early: Fix 'memcpy' implicit declaration Alexander Shiyan 2022-06-10 5:40 ` Alexander Shiyan [this message] 2022-06-10 5:40 ` [PATCH 3/8] gui: image_renderer: Fix empty prototype for image_renderer_image() Alexander Shiyan 2022-06-10 5:40 ` [PATCH 4/8] ARM: vexpress: Add missing "noreturn" attribute to restart function Alexander Shiyan 2022-06-10 5:40 ` [PATCH 5/8] ARM: versatile: " Alexander Shiyan 2022-06-10 5:40 ` [PATCH 6/8] lib: logo: Ignore more generated files Alexander Shiyan 2022-06-10 5:40 ` [PATCH 7/8] mtd: nand: orion: Disallow driver compile for ARMv4T Alexander Shiyan 2022-06-10 5:40 ` [PATCH 8/8] commands: Add CONSOLE dependency for EDIT command Alexander Shiyan 2022-06-10 7:54 ` [PATCH 0/8] Misc fixes part II 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=20220610054051.4911-3-eagle.alexander923@gmail.com \ --to=eagle.alexander923@gmail.com \ --cc=barebox@lists.infradead.org \ --subject='Re: [PATCH 2/8] ata: ahci: Fix format string' \ /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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox