From: Andre Przywara <andre.przywara@arm.com>
To: Maxime Ripard <maxime@cerno.tech>
Cc: u-boot@lists.denx.de, Peng Fan <peng.fan@nxp.com>,
Li Jun <jun.li@nxp.com>, Marek Vasut <marex@denx.de>,
Tom Rini <trini@konsulko.com>,
Miquel Raynal <miquel.raynal@bootlin.com>,
Jagan Teki <jagan@amarulasolutions.com>
Subject: Re: [PATCH 06/12] fastboot: Add missing newlines
Date: Fri, 25 Jun 2021 14:40:54 +0100 [thread overview]
Message-ID: <20210625144054.47b4e366@slackpad.fritz.box> (raw)
In-Reply-To: <20210625130547.2177920-7-maxime@cerno.tech>
On Fri, 25 Jun 2021 15:05:41 +0200
Maxime Ripard <maxime@cerno.tech> wrote:
> Most of the error messages in the NAND fastboot support are missing a \n
> at the end, add it where relevant.
>
> Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Thanks!
Andre
> ---
> drivers/fastboot/fb_nand.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/fastboot/fb_nand.c b/drivers/fastboot/fb_nand.c
> index eb8a36f29222..e07df33d3665 100644
> --- a/drivers/fastboot/fb_nand.c
> +++ b/drivers/fastboot/fb_nand.c
> @@ -49,13 +49,13 @@ static int fb_nand_lookup(const char *partname,
>
> ret = find_dev_and_part(partname, &dev, &pnum, part);
> if (ret) {
> - pr_err("cannot find partition: '%s'", partname);
> + pr_err("cannot find partition: '%s'\n", partname);
> fastboot_fail("cannot find partition", response);
> return ret;
> }
>
> if (dev->id->type != MTD_DEV_TYPE_NAND) {
> - pr_err("partition '%s' is not stored on a NAND device",
> + pr_err("partition '%s' is not stored on a NAND device\n",
> partname);
> fastboot_fail("not a NAND device", response);
> return -EINVAL;
> @@ -179,7 +179,7 @@ void fastboot_nand_flash_write(const char *cmd, void *download_buffer,
>
> ret = fb_nand_lookup(cmd, &mtd, &part, response);
> if (ret) {
> - pr_err("invalid NAND device");
> + pr_err("invalid NAND device\n");
> fastboot_fail("invalid NAND device", response);
> return;
> }
> @@ -243,7 +243,7 @@ void fastboot_nand_erase(const char *cmd, char *response)
>
> ret = fb_nand_lookup(cmd, &mtd, &part, response);
> if (ret) {
> - pr_err("invalid NAND device");
> + pr_err("invalid NAND device\n");
> fastboot_fail("invalid NAND device", response);
> return;
> }
> @@ -254,7 +254,7 @@ void fastboot_nand_erase(const char *cmd, char *response)
>
> ret = _fb_nand_erase(mtd, part);
> if (ret) {
> - pr_err("failed erasing from device %s", mtd->name);
> + pr_err("failed erasing from device %s\n", mtd->name);
> fastboot_fail("failed erasing from device", response);
> return;
> }
next prev parent reply other threads:[~2021-06-25 13:41 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-25 13:05 [PATCH 00/12] Random Fixes for the CHIP Pro Maxime Ripard
2021-06-25 13:05 ` [PATCH 01/12] Revert "sunxi: spl: remove DMA related settings of the NAND controller" Maxime Ripard
2021-06-25 13:05 ` [PATCH 02/12] Revert "spl: nand: sunxi: use PIO instead of DMA" Maxime Ripard
2021-06-25 13:05 ` [PATCH 03/12] Revert "usb: gadget: fastboot: use correct max packet size" Maxime Ripard
2021-06-25 13:47 ` Sean Anderson
2021-06-25 14:14 ` Maxime Ripard
2021-06-29 2:27 ` Peng Fan (OSS)
2021-07-03 13:47 ` Maxime Ripard
2021-06-25 13:05 ` [PATCH 04/12] Kconfig: Migrate SPL_PANIC_ON_RAW_IMAGE Maxime Ripard
2021-06-25 13:05 ` [PATCH 05/12] mtd: Allow for a longer mtdparts table Maxime Ripard
2021-06-25 13:05 ` [PATCH 06/12] fastboot: Add missing newlines Maxime Ripard
2021-06-25 13:40 ` Andre Przywara [this message]
2021-06-25 13:05 ` [PATCH 07/12] configs: chip pro: Disable video output Maxime Ripard
2021-06-25 13:38 ` Andre Przywara
2021-06-25 13:05 ` [PATCH 08/12] clk: sunxi: Add missing clock compatible Maxime Ripard
2021-06-25 13:38 ` Andre Przywara
2021-06-25 13:05 ` [PATCH 09/12] fastboot: nand: Fix return error code Maxime Ripard
2021-06-25 14:08 ` Andre Przywara
2021-06-25 13:05 ` [PATCH 10/12] configs: chip pro: Disable UMS Maxime Ripard
2021-06-25 13:05 ` [PATCH 11/12] configs: chip pro: fix the offsets Maxime Ripard
2021-06-25 13:05 ` [PATCH 12/12] configs: chip pro: Fix NAND Controller name Maxime Ripard
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=20210625144054.47b4e366@slackpad.fritz.box \
--to=andre.przywara@arm.com \
--cc=jagan@amarulasolutions.com \
--cc=jun.li@nxp.com \
--cc=marex@denx.de \
--cc=maxime@cerno.tech \
--cc=miquel.raynal@bootlin.com \
--cc=peng.fan@nxp.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
/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