Re: [PATCH NAND] mtd: nand: Replace printk() with appropriate dev_*macro()

From: Shreeya Patel
Date: Mon Feb 19 2018 - 14:40:05 EST


On Mon, 2018-02-19 at 16:12 +0100, Boris Brezillon wrote:
> On Mon, 19 Feb 2018 18:48:59 +0530
> Shreeya Patel <shreeya.patel23498@xxxxxxxxx> wrote:
>
> >
> > Replace printks having a log level with the appropriate
> > dev_*macro.
> > Also, use pdev->dev as it is guaranteed in each case to be
> > properly initialized when passed into dev_*macro().
> >
> > Signed-off-by: Shreeya Patel <shreeya.patel23498@xxxxxxxxx>
> > ---
> > Âdrivers/mtd/nand/ams-delta.c | 6 ++++--
> > Âdrivers/mtd/nand/cafe_nand.c | 5 +++--
> > Âdrivers/mtd/nand/sh_flctl.cÂÂ| 2 +-
> > Â3 files changed, 8 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/mtd/nand/ams-delta.c b/drivers/mtd/nand/ams-
> > delta.c
> > index dcec9cf..2419ca8 100644
> > --- a/drivers/mtd/nand/ams-delta.c
> > +++ b/drivers/mtd/nand/ams-delta.c
> > @@ -185,7 +185,8 @@ static int ams_delta_init(struct
> > platform_device *pdev)
> > Â /* Allocate memory for MTD device structure and private
> > data */
> > Â this = kzalloc(sizeof(struct nand_chip), GFP_KERNEL);
> > Â if (!this) {
> > - printk (KERN_WARNING "Unable to allocate E3 NAND
> > MTD device structure.\n");
> > + dev_warn(&pdev->dev,
> > + Â"Unable to allocate E3 NAND MTD device
> > structure.\n");
> > Â err = -ENOMEM;
> > Â goto out;
> > Â }
> > @@ -219,7 +220,8 @@ static int ams_delta_init(struct
> > platform_device *pdev)
> > Â this->dev_ready = ams_delta_nand_ready;
> > Â } else {
> > Â this->dev_ready = NULL;
> > - printk(KERN_NOTICE "Couldn't request gpio for
> > Delta NAND ready.\n");
> > + dev_notice(&pdev->dev,
> > + ÂÂÂ"Couldn't request gpio for Delta NAND
> > ready.\n");
> > Â }
> > Â /* 25 us command delay time */
> > Â this->chip_delay = 30;
> > diff --git a/drivers/mtd/nand/cafe_nand.c
> > b/drivers/mtd/nand/cafe_nand.c
> > index bc558c4..51f58ea 100644
> > --- a/drivers/mtd/nand/cafe_nand.c
> > +++ b/drivers/mtd/nand/cafe_nand.c
> > @@ -773,8 +773,9 @@ static int cafe_nand_probe(struct pci_dev
> > *pdev,
> > Â cafe->nand.bbt_td = &cafe_bbt_main_descr_512;
> > Â cafe->nand.bbt_md = &cafe_bbt_mirror_descr_512;
> > Â } else {
> > - printk(KERN_WARNING "Unexpected NAND flash
> > writesize %d. Aborting\n",
> > - ÂÂÂÂÂÂÂmtd->writesize);
> > + dev_warn(&cafe->pdev->dev,
> > + Â"Unexpected NAND flash writesize %d.
> > Aborting\n",
> > + Âmtd->writesize);
> > Â goto out_free_dma;
> I see plenty of printk()s (or pr_xxx()s if this patch is applied
> after
> the printk() -> pr_xxx() replacement) that are not converted to
> dev_xxx() in this driver. If we start using dev_xxx() it should be
> used
> consistently.
>
> How about we convert all printk()s to pr_xxx()s first (what you do in
> your first patch), including those you convert to dev_xxx() here, and
> then we consider patching some of the drivers to use dev_xxx()
> instead
> of pr_xxx().

Yes, this will be better :)
I'll include these changes in my pr_xxx() patch.
Then we will work for dev_xxx().

Thanks

>
> >
> > Â }
> > Â cafe->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
> > diff --git a/drivers/mtd/nand/sh_flctl.c
> > b/drivers/mtd/nand/sh_flctl.c
> > index e7f3c98..c534c49 100644
> > --- a/drivers/mtd/nand/sh_flctl.c
> > +++ b/drivers/mtd/nand/sh_flctl.c
> > @@ -877,7 +877,7 @@ static void flctl_cmdfunc(struct mtd_info *mtd,
> > unsigned int command,
> > Â else if (!flctl->seqin_column)
> > Â execmd_write_page_sector(mtd);
> > Â else
> > - printk(KERN_ERR "Invalid address
> > !?\n");
> > + dev_err(&flctl->pdev->dev,
> > "Invalid address !?\n");
> > Â break;
> > Â }
> > Â set_cmd_regs(mtd, command, (command << 8) |
> > NAND_CMD_SEQIN);
>
>